Skip to main content

Receive a Fax via API

The Telnyx Programmable Fax API lets you send, receive and manage faxes through a set of easy-to-use HTTP endpoints.

In this guide, you'll learn how to handle receiving a fax using the Programmable Fax API.

Step 1: Setup with Telnyx

Setup a Telnyx account, phone number, and programmable fax application

First, follow our Quickstart guide to create a Telnyx account, phone number, and Fax Application.

The phone number that you select and associate with the Programmable Fax Application will receive incoming fax calls. You can also port an existing number to Telnyx and use it for Programmable Fax.

Step 2: Receiving Webhooks

In order for the webhooks in this tutorial to work, Telnyx must be able to send your web application an HTTP request over the Internet. That means your application needs to have a URL or IP address that Telnyx can reach. Telnyx sends webhooks to the URL or IP address to notify your application of incoming faxes.

For the purpose of this tutorial, we're using ngrok , a popular tunneling tool used to expose a locally running application to the internet. ngrok gives you a public URL for a local port on your development machine, which you can use to configure your Telnyx webhooks as described above.

Download and install ngrok, then use it at the command line to create a tunnel to whatever port your web application is running on. For example, this command will create a public URL for a web application listening on port 3000.

ngrok http 3000

Note: After pasting the above content, Kindly check and remove any new line added

After executing that command, you will see that ngrok has given your application a public URL that you can use in your webhook connection configuration in the Telnyx Mission Control Portal .

Send and receive fax using Telnyx Programmable Fax API

Grab your ngrok public URL and head back to the Programmable Fax Application you configured earlier. Now in the field under "Send a webhook to the URL" enter your new ngrok URL from either of the "Forwarding" URLs ngrok provided us with depending on if you want to use HTTP or HTTPS.

You're now all set up to receive webhooks for events related to inbound faxes. If you use the same Programmable Fax Application for sending faxes, you will receive events to the same ngrok URL you just created.

Example Webhooks

If you have set everything up correctly, any time an inbound fax is received you can expect to receive the following webhooks:

Webhook NameDescription
fax.receiving.startedThe fax has begun transmitting to Telnyx successfully.
fax.media.processing.startedTelnyx has received the fax and is generating the digital PDF file.
fax.receivedThe PDF has been generated and the file is ready to be downloaded.
fax.failedTransmission of the fax failed. Check the <code>failure_reason</code> for more details.

Fax has begun transmitting to Telnyx

{
"data": {
"event_type": "fax.receiving.started",
"id": "bc004786-f166-4dd3-8c5d-737990b501bc",
"occurred_at": "2020-08-27T16:33:29.684247Z",
"payload": {
"connection_id": "1447842681660114324",
"direction": "inbound",
"fax_id": "9fbc3f0d-5495-42af-9a4e-c57a235d9182",
"from": "+16132484872",
"status": "receiving",
"to": "+17733372863",
"user_id": "19a75cea-02c6-4b9a-84fa-c9bc8341feb8",
"caller_id": "+16132484872"
},
"record_type": "event"
},
"meta": {
"attempt": 1,
"delivered_to": "https://1a3097.ngrok.io/"
}
}

Note: After pasting the above content, Kindly check and remove any new line added

Fax transmission is complete and Telnyx is converting to PDF

{
"data": {
"event_type": "fax.media.processing.started",
"id": "35e33b02-6365-47d0-93b7-3bfec97c467e",
"occurred_at": "2020-08-27T16:33:33.175396Z",
"payload": {
"connection_id": "1447842681660114324",
"direction": "inbound",
"fax_id": "f72eebbe-f9b6-4f0f-b652-03e742e110d5",
"from": "+16132484850",
"status": "media.processing",
"page_count": 2,
"to": "+17733372863",
"user_id": "19a75cea-02c6-4b9a-84fa-c9bc8341feb8",
"caller_id": "+16132484872"
},
"record_type": "event"
},
"meta": {
"attempt": 1,
"delivered_to": "https://1a3097.ngrok.io/"
}
}

Note: After pasting the above content, Kindly check and remove any new line added

PDF has been generated and is ready for download

The media_url field contains a signed AWS link to a PDF of the received fax. This URL is valid for 10 minutes before the file is no longer accessible so be sure to download the file if you wish to keep it!

{
"data": {
"event_type": "fax.received",
"id": "4844b70c-3c6c-4c3a-ba2e-e4c785f02d24",
"occurred_at": "2020-08-27T16:33:36.843054Z",
"payload": {
"call_duration_secs": 50,
"connection_id": "1447842681660114324",
"direction": "inbound",
"fax_id": "f72eebbe-f9b6-4f0f-b652-03e742e110d5",
"from": "+16132484850",
"media_url": "https://s3.amazonaws.com/faxes-prod/19a75cea-02c6-4b9a-84fa-c9bc8341feb8/f72eebbe-f9b6-4f0f-b652-03e742e110d5.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=...%2F20200827%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20200827T163336Z&X-Amz-Expires=7200&X-Amz-SignedHeaders=host&X-Amz-Signature=...",
"page_count": 2,
"partial_content": false,
"status": "received",
"to": "+17733372863",
"user_id": "19a75cea-02c6-4b9a-84fa-c9bc8341feb8",
"caller_id": "+16132484872"
},
"record_type": "event"
},
"meta": {
"attempt": 1,
"delivered_to": "https://1a3097.ngrok.io/"
}
}

Note: After pasting the above content, Kindly check and remove any new line added

Uh oh, something has gone wrong and the fax failed

Inbound faxes can fail for a variety of reasons. Some of the most common reasons are that the sending party hung up before the fax was finished transmitting or didn't send anything at all.

{
"data": {
"event_type": "fax.failed",
"id": "1a7405a6-696c-4369-a0b1-168e4bb7e22c",
"occurred_at": "2020-08-27T16:17:51.844250Z",
"payload": {
"connection_id": "1447842681660114324",
"direction": "inbound",
"failure_reason": "sender_call_dropped",
"fax_id": "181533f3-b0b8-4bcd-ab01-b33cd8698508",
"from": "+16617480240",
"status": "failed",
"to": "+17733372863",
"user_id": "19a75cea-02c6-4b9a-84fa-c9bc8341feb8",
"caller_id": "+16132484872"
},
"record_type": "event"
},
"meta": {
"attempt": 1,
"delivered_to": "https://1a3097.ngrok.io/"
}
}

Note: After pasting the above content, Kindly check and remove any new line added

Where to next?

Go back to our previous tutorial to learn how to send outbound faxes via API.

On this page