Get conversation seen data

Fetch the seen data (read receipts) for a conversation, showing who has seen messages and when.

GET
/v1/conversations/{conversationId}/seen

Path Parameters

conversationIdstring

The ID of the conversation

Header Parameters

X-Public-Key?string

Public API key for browser-based authentication.

Match^pk_(live|test)_[a-f0-9]{64}$

Response Body

application/json

application/json

curl -X GET "https://api.cossistant.com/v1/v1/conversations/string/seen"
{
  "seenData": [
    {
      "id": "string",
      "conversationId": "string",
      "userId": "string",
      "visitorId": "string",
      "aiAgentId": "string",
      "lastSeenAt": "string",
      "createdAt": "string",
      "updatedAt": "string",
      "deletedAt": "string"
    }
  ]
}
{
  "error": "string"
}