POST
/
users
/
{uid}
/
conversation
/
read
Mark User Conversation As Read
curl --request POST \
  --url https://{appid}.api-{region}.cometchat.io/v3/users/{uid}/conversation/read \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --header 'onBehalfOf: <onbehalfof>' \
  --data '{
  "messageId": 123
}'
{
  "data": {
    "success": true,
    "Message": "All the messages from the user {{UID}} are marked as read for the user {{onBehalfOf}}."
  }
}

Authorizations

apikey
string
header
required

API Key with fullAccess scope(i.e. Rest API Key from the Dashboard).

Headers

onBehalfOf
string
required

UID of the receiver of the message

Path Parameters

uid
string
required

UID of the user whose conversation needs to be fetched.

Body

application/json

Response

200 - application/json

Marking Conversation as read

The response is of type object.