Fax
List all faxes, view fax details, and send a fax.
List All
Request
GET https://api.telzio.com/fax
Query Parameters
Parameter | Type | Description | Default |
---|---|---|---|
pageSize | int32 | Number of items per page. | 20 |
pageIndex | int32 | Page index to load. | 0 |
Response
{
[
{
"id": integer,
"direction": string,
"from": string,
"to": string,
"assignedType": string,
"assignedTo": string,
"detailsPath": string,
"downloadPath": string,
"date": string,
}
]
}
Fax Details
Request
GET https://api.telzio.com/fax/{id}/details
Path Parameters
Parameter | Type | Description |
---|---|---|
id | int32 | Fax ID |
Response
{
"from": string,
"to": string,
"status": string,
"created": string,
"downloadPath": string,
"events": [
{
"eventText": string,
"eventDate": string,
}
]
}
Send Fax
Request
POST https://api.telzio.com/fax/send
Path Parameters
Parameter | Type | Description |
---|---|---|
From | string | E164 number to send from (i.e. full number starting with +). |
To | string | E164 number of recipient. |
file | PDF file to send. |