---
title: "Get a conference room by ID"
method: GET
path: "/conferences/{conferenceId}"
tags: ["conferences"]
---

# Get a conference room by ID

`GET /conferences/{conferenceId}`

Retrieves detailed information about a specific conference room by its identifier, including its assigned phone number, participant PIN code, admin PIN code, name, and configuration. Use `GET /conferences` to discover available conference IDs.

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

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

## Path parameters

- `conferenceId` integer, required

## Response `200`

Successful operation — returns the conference details.

- 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

- `400` — Invalid conference identifier.
- `401` — Unauthorized — invalid or missing API token, or Monitoring is OFF.
- `404` — Conference not found.
- `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)
