Get chat message

GET /data/entities/{entity_id}/chat/messages/{chat_message_id}

Retrieve a specific chat message by its ID. Returns detailed message information including content and metadata.

Path parameters

  • entity_id Required

    ID of the entity related to the chat

  • chat_message_id Required

    ID of the chat message

Responses

  • 200 application/json

    Chat message successfully retrieved

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

      Message unique identifier

    • message string

      Message content

    • person_id string(uuid)

      ID of the message sender

    • created_at string(date-time)

      Message creation timestamp

    • updated_at string(date-time)

      Message last update timestamp

    • attachments array[object]

      Array of file attachments

GET /data/entities/{entity_id}/chat/messages/{chat_message_id}
curl \
 --request GET 'http://api.example.com/data/entities/a24a6ea4-ce75-4665-a070-57453082c25/chat/messages/a24a6ea4-ce75-4665-a070-57453082c25' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "id": "string",
  "message": "string",
  "person_id": "string",
  "created_at": "2025-05-04T09:42:00Z",
  "updated_at": "2025-05-04T09:42:00Z",
  "attachments": [
    {}
  ]
}