Saytics webhooks let you forward event data to any HTTP endpoint the moment events are tracked, enabling real-time integrations with your own systems and third-party tools.Documentation Index
Fetch the complete documentation index at: https://docs.saytics.com/llms.txt
Use this file to discover all available pages before exploring further.
Use cases
- Sync Saytics events to your data warehouse
- Trigger workflows in Zapier or Make
- Update CRM records when key events fire
- Send transactional emails on specific user actions
Registering a webhook
Choose which events to send
Choose which events to forward — either all events, or filter by event name.
Webhook payload
Saytics sends a POST request to your endpoint with a JSON body for each event. Here is an example payload:Verifying webhook signatures
Saytics signs every webhook request with HMAC-SHA256 so you can confirm the request came from Saytics and was not tampered with. The signature is included in theX-Saytics-Signature request header.
Use the following example to verify the signature in your endpoint:
Handling retries and responses
Your endpoint must return a2xx status code within 10 seconds to acknowledge receipt. If it does not, Saytics treats the delivery as failed.