Validate an incoming webhook request
Checks the body (including timestamp and signature) against the configured webhook secret. Returns { valid: true } if the signature is valid.
Documentation Index
Fetch the complete documentation index at: https://docs.avidoai.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Your unique Avido API key
Your unique Avido Application ID
Body
Raw JSON payload sent by an external webhook, including signature and timestamp. HMAC verification is used for security.
HMAC signature for the request body.
"abc123signature"
The payload received from Avido. Use this in signature verification.
Timestamp for the request. Accepts unix milliseconds (string/number) and ISO date strings.
"2024-01-01T00:00:00.000Z"
Response
Webhook is valid
Response object indicating whether the webhook was valid.
Indicates if the webhook payload was successfully validated.
true