How to get search list restricted by the Group Id

I was tried to get search results restricted by the Group Id. 

I used this code. For example, I also added Category Type and Query. It's working fine, but when I add Group Id in 'id'. I received an empty array.
I know that the current Group has what I tried to search.

jQuery.telligent.evolution.get({
    url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/search.json',
        data: {
            Query:  'discuss ',
            Category: 'forum',
            id: '56',
        },
        success: 'successs'
})