latestOpenAPI 3.1.1Proprietary – Contact us for usage terms2026-08-20173183551.4 KB

9da73dd2f99e

conferences

Get a conference room by ID

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.

get/conferences/{conferenceId}

Path parameters

conferenceIdinteger required

The identifier of the conference

Response

Successful operation — returns the conference details.

conference_idinteger

The conference identifier

namestring

The name of the conference

Example response

{
  "conference_id": 60908,
  "name": "SoConference",
  "numbers": [
    {
      "number": 33184800000,
      "label": "myfavoritenumber",
      "type": "PHONE",
      "user_id": 60907,
      "ivr_id": 60908,
      "conference_id": 60908,
      "format": {
        "raw": 184800000,
        "country_code": "33",
        "country": "FR",
        "e164": "+33184800000",
        "international": "+33 1 84 80 00 00",
        "international_alt": "33184800000",
        "national": "01 84 80 00 00",
        "national_alt": "0184800000",
        "rfc3966": "tel:+33-1-84-80-00-00"
      }
    }
  ]
}