---
title: "List all conference rooms"
method: GET
path: "/conferences"
tags: ["conferences"]
---

# List all conference rooms

`GET /conferences`

Retrieves all conference rooms (audio bridges) configured for your team. A conference room allows multiple participants to join a shared audio call using a dedicated phone number and PIN code. Each conference includes its assigned number, participant PIN, admin PIN, and capacity settings. The total count is in the `list_count` field.

**Permission:** No specific permission required. A valid API key is sufficient.

**Monitoring:** **Required.** Conference management is a team-level supervisory feature. Returns `401 Unauthorized` if Monitoring is OFF on your API key.

## Response `200`

Successful operation — returns the list of conferences.

- ConferenceList
  - `list_count` integer — The size of the list
  - `list` Conference[]
    - `conference_id` integer — The conference identifier
    - `name` string — The name of the conference
    - `numbers` Number[] — The numbers of the conference
      - `number` integer — Phone number in E.164 format without the `+` prefix (e.g., `33612345678`).
      - `label` string — The label of the number
      - `type` string — The type of the number
      - `user_id` integer — The user identifier
      - `ivr_id` integer — The unique identifier of the IVR. Use `GET /ivrs` to discover available IVR IDs.
      - `conference_id` integer — The conference identifier
      - `is_sms` boolean
      - `is_sms_write` boolean
      - `is_callable` boolean
      - `format` FormatNumber
        - `raw` integer
        - `country_code` string
        - `country` string
        - `e164` string
        - `international` string
        - `international_alt` string
        - `national` string
        - `national_alt` string
        - `rfc3966` string
        - `is_short_code` boolean

## Other responses

- `204` — No conferences found.
- `401` — Unauthorized — invalid or missing API token, or Monitoring is OFF.
- `500` — Internal server error.

---

[API](https://skmtc.net/ringover/apis/ringover-public-api.md) · [All operations](https://skmtc.net/ringover/apis/ringover-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ringover/ringover-public-api/revisions/9da73dd2f99e/schema)
