Every webhook delivery includes anDocumentation Index
Fetch the complete documentation index at: https://docs.timeless.day/llms.txt
Use this file to discover all available pages before exploring further.
X-Webhook-Signature header containing an HMAC-SHA256 signature of the request body. You should verify this signature to confirm the payload was sent by Timeless and has not been tampered with.
Signature format
The header value has the format:secret (returned when you created the webhook) as the key and the raw JSON request body as the message.
Verification examples
Webhook payload
The request body is a JSON object whose structure depends on the webhook event type. For example, meeting-related events include the same fields as a meeting in the List meetings response (id, title, status, participants, host, documents). Refer to the documentation for each event type for its specific payload format.
Delivery behavior
- Deliveries time out after 10 seconds.
- A delivery is considered successful if your endpoint returns a
2xxstatus code. - Failed deliveries are retried up to 3 times with increasing delays (1s, 10s, 60s).
- Retries occur for server errors (5xx), rate limits (429), and network failures. Client errors (4xx other than 429) are not retried.