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 IdHeader
Parameters
Path- Name
recordId*
- Type
- Integer
- Description
1234
- 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.com/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 QueryHeader
Parameters
Query- Name
tenantId*
- Type
- Integer
- Description
1234
- 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.com/mail-to-faxes?tenantId=432' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'