API Overview
Message Callbacks
Status Codes
Overview
After dissolving a group on your application server, use this API to synchronize the change with the IM Server. To send a group dissolution notification, send the notification message before calling this API.
Group dissolution notification
After a group is dissolved, the IM Server does not send a dissolution notification. You must send a custom notification message to the group.
Request
Authentication: Add authentication headers to the request. See Authentication.
Method
POST
Rate limit
100 requests/second
Endpoint https://API domain/apigateway/groups/del
Content-Type
application/json
Request Parameters
| Parameter | Data Type | Required | Description | |
|---|---|---|---|---|
| group_id | string | Yes | Group ID. Maximum length: 64 characters. |
Request Example
POST /apigateway/groups/del HTTP/1.1
appkey: appkey
signature: 2e639ae3600a4sdff61fb88b76f485b
nonce: nonce
timestamp: 1672568121910
Content-Type: application/json
{
"group_id":"groupid1"
}
Response Example
{
"code":0,
"msg":"sucess"
}