Authorizations
API Key with fullAccess scope(i.e. Rest API Key from the Dashboard).
Query Parameters
(Required) UID
Body
application/json
Unmute Conversations
curl --request DELETE \
  --url https://{appid}.api-{region}.cometchat.io/v3/notifications/v1/preferences/mute \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --data '{
  "conversations": [
    {
      "id": "<string>",
      "type": "oneOnOne"
    }
  ]
}'{
  "data": {
    "success": true
  }
}Unmute notifications for the conversations on behalf of the given user.
curl --request DELETE \
  --url https://{appid}.api-{region}.cometchat.io/v3/notifications/v1/preferences/mute \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --data '{
  "conversations": [
    {
      "id": "<string>",
      "type": "oneOnOne"
    }
  ]
}'{
  "data": {
    "success": true
  }
}API Key with fullAccess scope(i.e. Rest API Key from the Dashboard).
(Required) UID
Unmute Conversations
Show child attributes
Was this page helpful?