Set Do Not Disturb for a Specific Conversation
Set the Do Not Disturb logic for a specific conversation (targetId
) for a specific user (requestId
). Supported conversation types include: one-to-one chat, group chat, ultra group, and system conversation. After setting, the SDK can retrieve the latest Do Not Disturb status of the conversation in real-time.
- The current setting is at the user level.
Request Method
POST: https://data center domain/conversation/notification/set.json
Rate Limit: 100 requests per second
Signature Rule: All server API requests require signature verification. For details, refer to API Request Signature.
Body Parameters
The HTTP request body data format is application/x-www-form-urlencoded
. The following HTTP form parameters are supported:
Parameter | Type | Required | Description |
---|---|---|---|
conversationType | String | Yes | Conversation type. Supported conversation types include: 1 (one-to-one chat), 3 (group chat), 6 (system conversation), 10 (ultra group chat). |
requestId | String | Yes | The user ID for whom the Do Not Disturb setting is being configured. |
targetId | String | Yes | The target ID, which could be a user ID, group ID, ultra group ID, etc., depending on the conversation type (ConversationType ). |
isMuted | Int | Yes | The Do Not Disturb setting status, where 0 means off and 1 means on.This field is deprecated. It is recommended to use unpushLevel . Only one of isMuted or unpushLevel needs to be passed. If both are passed, unpushLevel will be used. |
busChannel | String | No | The channel ID of the ultra group conversation.
|
unpushLevel | Int | Yes |
|
Request Example
POST /conversation/notification/set.json HTTP/1.1
Host: api.rong-api.com
App-Key: uwd1c0sxdlx2
Nonce: 14314
Timestamp: 1408710653491
Signature: 45beb7cc7307889a8e711219a47b7cf6a5b000e8
Content-Type: application/x-www-form-urlencoded
conversationType=1&requestId=b5NwvIrW8&targetId=UAhIaLkR0&unpushLevel=0
Response
The HTTP response body contains a JSON object with the following structure:
Return Value | Type | Description |
---|---|---|
code | Number | Return code, 200 indicates success. |
Response Example
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{"code":200}