v51

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-014102371.0 MB
Service Agent

Get participants of a talk chat

Returns a list of participants in a specific talk chat.

get/service_agents/talk_chats/{id}/participants

Path parameters

idstring required

The talk chat ID.

Response

A list of participants.

idstring uuid

The unique identifier of the participant.

customer_idstring uuid

The unique identifier of the customer. Returned from the GET /customers response.

owner_typestring

Resource's owner type.

owner_idstring uuid

The unique identifier of the participant owner. Returned from the corresponding owner resource endpoint.

chat_idstring uuid

The unique identifier of the talk this participant belongs to. Returned from the GET /service_agents/talk_chats response.

tm_joinedstring date-time

Timestamp when the participant joined the talk.

Example response

[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "customer_id": "7c4d2f3a-1b8e-4f5c-9a6d-3e2f1a0b4c5d",
    "owner_type": "agent",
    "owner_id": "d4e5f6a7-b8c9-0d1e-2f3a-4b5c6d7e8f90",
    "chat_id": "f6a7b8c9-d0e1-2f3a-4b5c-6d7e8f9a0b1c",
    "tm_joined": "2026-01-15T10:00:00.000000Z"
  }
]