Documentation Index
Fetch the complete documentation index at: https://docs.sertexity.com/llms.txt
Use this file to discover all available pages before exploring further.
Webhooks Overview
Sertexity sends HTTPPOST notifications to your server when events occur — no polling needed.
How it works
- Register a webhook URL via
POST /webhooks. - When an event fires, Sertexity sends a signed
POSTto your URL within seconds. - Respond with any
2xxstatus within 10 seconds to acknowledge. - On failure, Sertexity retries 5 times with exponential back-off: 30 s → 2 min → 10 min → 30 min → 2 h.
Signature verification
Every delivery includes:secret you provided when registering:
Payload structure
| Field | Description |
|---|---|
id | Unique event ID — use as an idempotency key |
type | Event type string |
created_at | ISO 8601 |
data.object | The complete resource that changed |