Mail To Fax Users


GEThttps://api.voxo.co/mail-to-faxes/{recordId}

Get Mail To Fax User By Id

Retrieve single User with Mail to Fax Privileges 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": 7,
    "tenantId": 432,
    "name": "Freddy",
    "email": "freddy@freddy.com",
    "cidnum": "1111111111"
}

cURL

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

GEThttps://api.voxo.co/mail-to-faxes?tenantId={tenantId}

Get All Mail To Fax Users

Retrieve Users with Mail to Fax Privileges. Parameters Query

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": 7,
        "tenantId": 432,
        "name": "Freddy",
        "email": "freddy@freddy.com",
        "cidnum": "1111111111"
    }
]

cURL

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