Call Queues


GEThttps://api.voxo.co/queues/{recordId}

Call Queues

Retreive call queue 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": 298,
        "tenantId": 37,
        "name": "Test Queue",
        "number": "",
        "hostServer": "atl-ast2",
        "recording": "no",
        "ringStrategy": "RINGALL"
    }

cURL

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

GEThttps://api.voxo.co/queues?tenantId={tenantId}

Get All Call Queues

Retreive queues for specific account

Parameters

Query
  • Name
    tenantId*
    Type
    Integer
    Description

    1234

Header
  • Name
    Authorization*
    Type
    String
    Description

    Bearer {AccessToken}

  • Name
    Content-Type*
    Type
    String
    Description

    application/json

Response

    [
        {
            "id": 298,
            "tenantId": 37,
            "name": "Test Queue",
            "number": "",
            "hostServer": "atl-ast2",
            "recording": "no",
            "ringStrategy": "RINGALL"
        }
    ]

cURL

curl --location -g \
--request GET 'https://api.voxo.com/queues/?tenantId=37' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'