Overview
When you provide acallBackUrl in your create task request, we’ll send a POST request to that URL when the task completes.
Webhook Payload
Webhook Headers
| Header | Description |
|---|---|
| Content-Type | application/json |
| X-Webhook-Signature | HMAC signature for verification |
Best Practices
- Respond with 200 status code within 5 seconds
- Process webhook data asynchronously
- Implement idempotency to handle duplicate deliveries
- Verify webhook signatures for security