Paging Groups


GEThttps://api.voxo.co/paging-groups/{recordId}

Get Paging Group By Id

Retrieve paging group by Id

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": 37,
    "tenantId": 432,
    "number": "3424",
    "name": "test",
    "twoWayAudio": "yes",
    "meId": 0,
    "checkInUse": "on",
    "pin": 0,
    "manualHeader": ""
}

cURL

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

GEThttps://api.voxo.co/paging-groups?tenantId={tenantId}

Get All Paging Groups

Retrieve the paging groups for authorized accounts

Parameters

Query
  • Name
    tenantId*
    Type
    Integer
    Description

    12345

Header
  • Name
    Authorization*
    Type
    String
    Description

    Bearer {AccessToken}

  • Name
    Content-Type*
    Type
    String
    Description

    application/json

Response

[
    {
        "id": 37,
        "tenantId": 432,
        "number": "3424",
        "name": "test",
        "twoWayAudio": "yes",
        "meId": 0,
        "checkInUse": "on",
        "pin": 0,
        "manualHeader": ""
    }
]

cURL

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