📞
API Docs
  • Welcome
  • NUMBERS / ORDERING
    • List Areas
    • List Numbers
    • Order Numbers - No Cart
    • Delete Numbers
    • Vanity Tollfree - Search
    • Vanity Toll Free - Order
  • Shopping Cart Ordering
    • Add Number to Cart
    • List Numbers in Cart
    • Delete Number from Cart
    • Complete Order Cart
  • MY INVENTORY
    • List My Nmbers
    • List Call Flows
    • Change CallFlow
    • CDR Records
  • SMS/MMS
    • Send SMS
    • Send MMS
    • Receive SMS/MMS
    • Receive Delivery Receipts
  • Campaigns
    • Submit TollFree Campaign
  • CALL APIS
    • Calls
    • Set Incoming URL
    • Incoming Calls
    • Listing Calls
    • Making Calls
      • Example Code
        • Outbound to Tel#
        • Outbound to SIP Device
        • Example Responses
    • Modifying Live Calls
      • Examples
    • Recordings
      • Get List of Recordings
      • Delete a Recording
  • CALL API MARKUP
    • API Call Markup Language
      • Say
      • Dial
        • Number
        • Client
        • SIP
      • Play
      • Gather
      • Record
      • Hangup
      • Pause
      • Reject
      • Redirect
  • LOOKUPS
    • Carrier and CNAM
  • Number Portability
    • Validate Portability
    • Lookup Port Request
    • Submit Port Request
  • FAXING
    • Create Outbound Fax
    • Lookup Outbound Fax Status
    • List Faxes
    • Download File
Powered by GitBook
On this page
  1. FAXING

Lookup Outbound Fax Status

Lookup the status for a previously sent fax

GET or POST Request

https://v1.api19.com/fax/lookup

Send us a GET or POST request with your key and fax id.

This will give you back information about the fax request.

Argument

Required

Type

key

yes

api key

fax_id

yes

fax id sent

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"
  }
}
PreviousCreate Outbound FaxNextList Faxes

Last updated 28 days ago