Call Blocking


GEThttps://api.voxo.co/call-blocking/{recordId}

Call Blocking By Id

Retreive single call blocking (blacklist) record with 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": 620,
        "tenantId": 432,
        "callerId": "3235937002",
        "inserted": "2016-06-10 20:39:59",
        "reason": "car warranty scam"
    }

cURL

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

GEThttps://api.voxo.co/call-blocking?tenantId={tenantId}

Call Blocking By Account

Retreive all call blocking (blacklist) records

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": 620,
            "tenantId": 432,
            "callerId": "3235937002",
            "inserted": "2016-06-10 20:39:59",
            "reason": "car warranty scam"
        }
    ]

cURL

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