v51

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-014102371.0 MB
AI

List participants of an AI call

Retrieves a paginated list of AI agents that participated in the specified AI call.

get/aicalls/{id}/participants

Path parameters

idstring uuid required
Example:11111111-1111-1111-1111-111111111111

The unique identifier of the AI call. Returned from the POST /aicalls or GET /aicalls response.

Query parameters

page_sizeinteger
Example:25

Number of results to return per page.

page_tokenstring

Cursor token for pagination. Use the next_page_token value from the previous response.

Response

A paginated list of participants.

next_page_tokenstring

Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.

Example response

{
  "result": [
    {
      "ai_id": "22222222-2222-2222-2222-222222222222",
      "aicall_id": "11111111-1111-1111-1111-111111111111",
      "tm_create": "2026-05-22T10:00:00.000000Z"
    }
  ]
}