Webhook
Definition
A Webhook is a mechanism that allows you to receive real-time notifications about faxes being sent and received.
Setting Up Webhooks
To start receiving real-time updates, you need to create a webhook in the Fax.Plus system. Here’s how:
-
Decide on a target URL where you want to receive webhook notifications. This should be an endpoint on your server that’s set up to handle incoming POST requests.
-
Choose the event(s) you want to track. Fax.Plus offers the following webhook events:
fax_sent
— When a fax is successfully sentfax_received
— When a fax is successfully received
-
Use the Fax.Plus API to create the webhook. You’ll need to specify your target URL and the event(s) you want to track.
For detailed information on how to create a webhook using the API, refer to the Register a webhook endpoint documentation.
Handling Webhook Notifications
Once you’ve set up your webhook, Fax.Plus will send POST requests to your specified URL whenever the tracked events occur. Here’s what you need to know about handling these notifications:
- Request Method: All webhook notifications are sent as HTTP POST requests.
- Payload Structure: The webhook payload is a JSON object containing two main sections:
hook
: Contains metadata about the webhook itself.data
: Contains information about the fax that triggered the event.
Events
fax_sent
The fax_sent
event is triggered when a fax is successfully sent.
If hook.id
is not equal to data.id
, the fax is being retried. If hook.id
equals data.id
, it indicates the fax is being sent for the first time.
Payload schema
Name | Type | Required | Description | Restrictions |
---|---|---|---|---|
hook | object | Yes | Hook and event description | none |
id | string | Yes | Fax ID | none |
event | string | Yes | Event type | none |
event_time | string | Yes | Time of the event. Format: YYYY-MM-DD HH:mm:ss | none |
target | string | Yes | Configured URL target for this webhook | none |
data | object | Yes | Callback data, depends on the event type | none |
id | string | Yes | Fax session ID. This ID might differ from the one returned by listFaxes | none |
uid | string | Yes | Sender user ID | none |
pages | number | Yes | Number of pages in the fax | none |
from | string | Yes | Sender number. Might be a user ID for faxes sent from free accounts | none |
to | string | Yes | Fax destination number. Might be a user ID for faxes sent from free accounts | none |
start_time | string | Yes | Time at which faxing session started. Format: YYYY-MM-DD HH:mm:ss | none |
file | string | Yes | File ID | none |
file_name | string | Yes | Human-readable file name | none |
cost | number | Yes | Fax cost (in pages) | none |
status | FaxStatus | Yes | Fax status | none |
fax_received
The fax_received
event is triggered when a fax is successfully received.
Payload schema
The payload schema for fax_received
is identical to the fax_sent
event.
Verify origin IP addresses
To ensure that the webhook requests you receive are legitimate and originate from Fax.Plus, it’s important to verify the IP addresses. Fax.Plus webhooks will only be sent from the following authorized IP addresses:
- 34.65.253.117
- 34.65.146.131
Make sure your server is configured to accept webhook requests only from these IPs to enhance security.
Handling the Notification
When your server receives a webhook notification:
- Verify the payload to ensure it’s a valid webhook notification.
- Extract the relevant information from the payload.
- Perform any necessary actions based on the event type (e.g., update your database, notify users, trigger other processes).
- Send a 200 OK response to acknowledge receipt of the webhook.
Best Practices
- Security: Ensure your webhook endpoint is secure. Consider implementing authentication for your webhook URL.
- Idempotency: Design your webhook handler to be idempotent. This means it should produce the same result even if the same webhook is received multiple times.
- Error Handling: Implement robust error handling in your webhook processing logic.
By following this guide, you’ll be able to set up and handle webhooks effectively, allowing your application to receive real-time updates about fax statuses in the Fax.Plus system.