Skip to main content

Overview

Searches the groups joined by the current user.

Request

Authentication: Add authentication headers to the request. See Authentication

Method: POST

Rate limit: 100 requests/second

Endpoint: https://API domain/jim/groups/mygroups/search

Content-Type: application/json

Request parameters

ParameterData typeRequiredDescription
keywordstringYesSearch keyword.
offsetstringNoPagination offset. Omit for the first request.
limitintNoNumber of items returned per request.

Request example

POST /jim/groups/mygroups/search HTTP/1.1
appkey: appkey
Authorization: xxxxxxxxxxxxxxxxxx
Content-Type: application/json

{
"keyword":"group",
"limit":100
}

Response example

{
"code":0,
"msg":"sucess",
"data":{
"items":[{
"group_id":"groupid1",
"group_name":"group1",
"group_portrait":"https://xxxxxx.png"
}],
"offset":"xxxx"
}
}

Response codes

Response codesDescription