Conference Rooms


GEThttps://api.voxo.co/conference-bridges/{recordId}

Get Conference Room By Id

Retrieve all conference rooms for authorized tenant accounts

Parameters

Path
  • Name
    recordId*
    Type
    Integer
    Description

    1234

Header
  • Name
    Authorization*
    Type
    String
    Description

    Bearer {AccessToken}

  • Name
    Content-Type*
    Type
    String
    Description

    application/json

Response

{
    "id": 39,
    "tenantId": 432,
    "name": "General",
    "number": "1606"
}

cURL

curl --location -g \
--request GET 'https://api.voxo.co/conference-bridges/1234' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'

GEThttps://api.voxo.co/conference-bridges?tenantId={tenantId}

Get All Conference Rooms

Retrieve all conference rooms for authorized tenant accounts

Parameters

Path
  • Name
    tenantId*
    Type
    Integer
    Description

    1234

Header
  • Name
    Authorization*
    Type
    String
    Description

    Bearer {AccessToken}

  • Name
    Content-Type*
    Type
    String
    Description

    application/json

Response

    [
        {
            "id": 39,
            "tenantId": 432,
            "name": "General",
            "number": "1606"
        }
    ]

cURL

curl --location -g \
--request GET 'https://api.voxo.co/conference-bridges?tenantId=432' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'