Voicemails


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

Get Voicemail By Id

Fetch voicemail 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": 5216,
    "fullName": "Grablic",
    "mailbox": "1234",
    "password": "6209",
    "email": "jut@tut.com"
}

cURL

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

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

Get All Voicemails

Fetch voicemail for accounts and user.

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": 5216,
        "fullName": "Grablic",
        "mailbox": "1234",
        "password": "6209",
        "email": "jut@tut.com"
    }
]

cURL

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