Skip to main content

Overview

Retrieves the groups joined by the current user.

Request

Authentication: Add authentication headers to the request. See Authentication

Method: GET

Rate limit: 100 requests/second

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

Content-Type: application/json

Request parameters

ParameterData typeRequiredDescription
offsetstringNoPagination offset. Omit for the first request.
countintNoNumber of items returned per request.

Request example

GET /jim/groups/mygroups?count=100 HTTP/1.1
appkey: appkey
Authorization: xxxxxxxxxxxxxxxxxx
Content-Type: application/json

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