---
title: "Get list of conferences"
method: GET
path: "/conferences"
tags: ["Conference"]
---

# Get list of conferences

`GET /conferences`

Retrieve a paginated list of conferences for the customer.

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

A list of conferences.

- 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` ConferenceManagerConference[]
    - `id` string, uuid — Unique identifier for the conference.
    - `customer_id` string, uuid — Unique identifier of the associated customer. Returned from the `GET /customers` response.
    - `type` '' | 'conference' | 'connect' | 'queue' — Types of conferences.
    - `status` 'starting' | 'progressing' | 'terminating' | 'terminated' — Status of the conference.
    - `name` string — Name of the conference.
    - `detail` string — Detailed information about the conference.
    - `data` object — Custom key-value data associated with the conference.
    - `timeout` integer — Timeout for the conference in seconds.
    - `pre_flow_id` string, uuid — The unique identifier of the flow to execute before the conference starts. Returned from the `POST /flows` or `GET /flows` response.
    - `post_flow_id` string, uuid — The unique identifier of the flow to execute after the conference ends. Returned from the `POST /flows` or `GET /flows` response.
    - `conferencecall_ids` string[] — List of associated conference call IDs. Each ID is returned from the `GET /conferencecalls` response.
    - `recording_id` string, uuid — ID of the main recording associated with the conference. Returned from the `GET /recordings` response.
    - `recording_ids` string[] — List of associated recording IDs. Each ID is returned from the `GET /recordings` response.
    - `transcribe_id` string, uuid — ID of the main transcription associated with the conference. Returned from the `GET /transcribes` response.
    - `transcribe_ids` string[] — List of associated transcription IDs. Each ID is returned from the `GET /transcribes` response.
    - `direct_hash` string — The direct hash for direct access via SIP URI sip:<direct_hash>@sip.voipbin.net (the "direct." prefix is already included in the value, e.g. "direct.a1b2c3d4e5f6"). Returned from the resource's `direct_hash` field.
    - `tm_end` string, date-time — Timestamp when the conference ended.
    - `tm_create` string, date-time — Timestamp when the conference was created.
    - `tm_update` string, date-time — Timestamp when the conference was last updated.
    - `tm_delete` string, date-time — Timestamp when the conference 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/versions/79e779080bcc/schema)
