Skip to main content
POST
/
api
/
v1
/
conversations
/
{conversationId}
/
read
Mark Conversation Read
curl --request POST \
  --url https://api.sequenzy.com/api/v1/conversations/{conversationId}/read \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "updated": 2
}
Mark all unread inbound messages in a conversation as read and clear the conversation’s unread flag.

Request

conversationId
string
required
Conversation ID.
This endpoint does not accept a request body.
curl -X POST "https://api.sequenzy.com/api/v1/conversations/conv_abc123/read" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "updated": 2
}