Call Groups


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

Get Call Group By Id

Retreive single call 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": 41,
        "tenantId": 432,
        "name": "main",
        "number": "4321",
        "type": "SEQUENCE"
    }

cURL

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

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

Get All Call Groups

Retreive all call group by authorized tenants

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": 41,
            "tenantId": 432,
            "name": "main",
            "number": "4321",
            "type": "SEQUENCE"
        }
    ]

cURL

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