Skip to main content
POST
/
api
/
contact
/
message-seen
Mark a conversation as seen
curl --request POST \
  --url https://your-instance.example.com/api/contact/message-seen \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "conversationId": "64f0a1b2c3d4e5f6a7b8c9e0"
}
'
{
  "message": "Conversation deleted"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
conversationId
string
required

Conversation _id to mark as seen; clears its isUpdated flag and recomputes the parent contact's unread state.

Response

Conversation marked as seen

message
string
data
any