Webhooks
Webhooks allow you to receive asynchronous notifications when a process completes. Instead of polling an endpoint to check the status, webhooks push updates directly to your specified URL.
How to Use Webhooks
To use webhooks with our API, simply append the webhook_url
parameter to your /run
request:
When the process completes, our system will send a POST request to your specified webhook URL with the complete response payload.
Webhook Retry Mechanism
Our system implements a robust retry mechanism to ensure webhook delivery:
- If a webhook delivery fails (non-2xx response), we automatically retry
- The system attempts up to 5 retries
- Retries occur within a timespan of approximately 5 minutes
Example: Using Webhooks with the /run Endpoint
Based on the /run
endpoint from the FASHN API, here's how to implement webhooks:
Success Webhook Payload
When the process completes successfuly, your webhook URL will receive a POST request with a payload similar to:
Error Webhook Payload
When the process has failed, your webhook URL will receive a POST request with a payload similar to:
To learn more about runtime erros and how to handle them, check out our Runtime Errors guide.
Best Practices
- Implement Idempotency: Your webhook handler should be idempotent to handle potential duplicate deliveries.
- Respond Quickly: Your webhook endpoint should respond with a 2xx status code as quickly as possible. Process the webhook data asynchronously if needed.
- Verify Webhooks: Consider implementing a verification mechanism to ensure webhooks are coming from our service.
- Monitor Webhook Failures: Set up monitoring for webhook failures to detect any issues with your endpoint.
Troubleshooting
If you're not receiving webhook notifications:
- Verify your webhook URL is publicly accessible
- Check that your server responds with a 2xx status code
- Test your webhook endpoint with a tool like Webhook.site
For additional support, contact our team at support@fashn.ai.