---
title: "Get list of conference calls"
method: GET
path: "/conferencecalls"
tags: ["Conference"]
---

# Get list of conference calls

`GET /conferencecalls`

Retrieve a paginated list of conference calls for the authenticated customer.

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

A list of conference calls.

- 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` ConferenceManagerConferencecall[]
    - `id` string, uuid — Unique identifier for the conference call.
    - `customer_id` string, uuid — Unique identifier of the associated customer. Returned from the `GET /customers` response.
    - `activeflow_id` string, uuid — Activeflow ID associated with this conference call. Returned from the `POST /activeflows` or `GET /activeflows` response.
    - `conference_id` string, uuid — Unique identifier of the associated conference. Returned from the `GET /conferences` response.
    - `reference_type` 'call' — Type of the reference associated with the conference call.
    - `reference_id` string, uuid — The unique identifier of the referenced resource. The actual resource type is determined by reference_type. Returned from the corresponding resource endpoint.
    - `status` 'joining' | 'joined' | 'leaving' | 'leaved' — Status of the conference call.
    - `tm_create` string, date-time — Timestamp when the conference call was created.
    - `tm_update` string, date-time — Timestamp when the conference call was last updated.
    - `tm_delete` string, date-time — Timestamp when the conference call was deleted.

## Other responses

- `401` — Authentication required (UNAUTHENTICATED).
- `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/revisions/79e779080bcc/schema)
