---
title: "List participants of an AI call"
method: GET
path: "/aicalls/{id}/participants"
tags: ["AI"]
---

# List participants of an AI call

`GET /aicalls/{id}/participants`

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

## Path parameters

- `id` string, uuid, required

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

A paginated list of participants.

- object
  - `next_page_token` string — Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.
  - `result` AIManagerParticipant[]
    - `ai_id` string, uuid — The unique identifier of the AI agent. Returned from the `GET /ais` response.
    - `aicall_id` string, uuid — The unique identifier of the AI call. Returned from the `GET /aicalls` response.
    - `tm_create` string, date-time — The timestamp when the participation was recorded.

## Other responses

- `400` — Invalid request (INVALID_ARGUMENT).
- `401` — Authentication required (UNAUTHENTICATED).
- `403` — Insufficient permission (PERMISSION_DENIED).
- `404` — Resource not found (NOT_FOUND).
- `500` — Internal error (INTERNAL).

---

[API](https://skmtc.net/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.net/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/versions/79e779080bcc/schema)
