POST
/
groups
/
{guid}
/
conversation
/
read
Mark Group Conversation As Read
curl --request POST \
  --url https://{appid}.api-{region}.cometchat.io/v3/groups/{guid}/conversation/read \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --header 'onBehalfOf: <onbehalfof>' \
  --data '{
  "messageId": 123
}'
{
  "data": {
    "success": true,
    "message": "All the messages in group {{GUID}} 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

guid
string
required

GUID of the group whose conversation needs to be fetched.

Body

application/json
messageId
integer

The id of the message upto which the conversation needs to be marked as read.

Response

200 - application/json

Marking Conversation as read

data
object