Download Fax File

Download a Specific Fax ID

/get
Full Url:
Arguments:
  • token (string, required)
  • fax_id (int, required)
Info: Get the actual fax data about a given fax_id. The file data itself is in base64 format. The mime type will almost always be application/pdf -- but it's there for you to check just in case.

Example Response

{
"code": 200,
"status": "success",
"data": {
"id": 1,
"did_id": 1,
"fax_status": "read",
"direction": "inbound",
"source_did": "5555555555",
"destination_did": "6666666666",
"recipient": "Bobby Tables",
"pages": 1,
"fail_reason": null,
"create_dt": "2017-05-01 00:00:00",
"modify_dt": "2017-05-01 23:59:59",
"data": "YXJlbid0IHlvdSBjbGV2ZXIgOi0p",
"mime": "text/plain"
}
}