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": "<string>"
}
'
{
  "message": "<string>",
  "data": "<unknown>"
}

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

Response

Conversation marked as seen

message
string
data
any