Virtual Receptionists


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

Get IVR By Id

Retrieve IVR 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": 53,
    "tenantId": 432,
    "name": "main",
    "allowDisa": "on"
}

cURL

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

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

Get All IVRs

Retrieve IVRs for a 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": 53,
        "tenantId": 432,
        "name": "main",
        "allowDisa": "on"
    }
]

cURL

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