API Overview
Message Callbacks
Status Codes
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
| Parameter | Data type | Required | Description | |
|---|---|---|---|---|
| offset | string | No | Pagination offset. Omit for the first request. | |
| count | int | No | Number 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 codes | Description |
|---|