Webhooks let you receive HTTP POST requests when things happen in your Tickable account, like a new order or a scanned ticket.
Supported Events
Creating a Webhook
You can create webhooks via the API or from the Tickable dashboard.
Your webhook endpoint must be publicly accessible and respond with a 2xx status code within 10 seconds.
Receiving Webhooks
When an event occurs, Tickable sends a POST request to your URL:
Example Handler
Managing Webhooks
List All Webhooks
Delete a Webhook
Best Practices
Always respond quickly to webhook requests. If you need to do heavy processing, acknowledge the webhook with a 200 and process the data asynchronously.
- Respond fast — return
200 immediately, process in the background
- Handle duplicates — webhooks may be delivered more than once, use the event ID to deduplicate
- Subscribe only to what you need — reduce noise by selecting specific event types