Lookup Outbound Fax Status
Lookup the status for a previously sent fax
GET or POST Request
Send us a GET or POST request with your key and fax id.
This will give you back information about the fax request.
curl -X POST https://v1.api19.com/fax/lookup \
-d "fax_id=234234" \
-d 'key=your-key'
{
"status": "ok",
"data": {
"user_id": "28444",
"source": "7203334255",
"destination": "7209996293",
"direction": "outbound",
"send_status": "success",
"long_status": "Success",
"read_status": "read",
"pages": "2",
"seconds": "201",
"send_time": "2024-04-10 03:31:35",
"complete_time": "2024-04-10 02:31:32"
}
}