Skip to main content
POST
/
api
/
conversation
/
unseen
Mark conversation as unseen
curl --request POST \
  --url https://your-instance.example.com/api/conversation/unseen \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "conversationId": "65d3e0f0a0b0c0d0e0f0a0b0"
}
'
{
  "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

_id of the conversation to flip back to unseen for the calling user.

Response

Conversation marked as unseen

message
string
data
any