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

9da73dd2f99e

conferences

List all conference rooms

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.

get/conferences

Response

Successful operation — returns the list of conferences.

list_countinteger

The size of the list

Example response

{
  "list_count": 1,
  "list": [
    {
      "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"
          }
        }
      ]
    }
  ]
}