Get chat details

GET /data/entities/{entity_id}/chat

Retrieve chat information and messages for a specific entity. Returns chat metadata including participants and all associated messages.

Path parameters

  • entity_id Required

    ID of the entity related to the chat

Responses

  • 200 application/json

    Chat information successfully retrieved

    Hide response attributes Show response attributes object
    • id string(uuid)

      Chat unique identifier

    • entity_id string(uuid)

      Entity ID this chat is associated with

    • participants array[string(uuid)]

      List of participant user IDs

    • messages array[object]

      Array of chat messages

GET /data/entities/{entity_id}/chat
curl \
 --request GET 'http://api.example.com/data/entities/a24a6ea4-ce75-4665-a070-57453082c25/chat' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "id": "string",
  "entity_id": "string",
  "participants": [
    "string"
  ],
  "messages": [
    {}
  ]
}