52.62.153.44
.POST
request. Each event is attempted once initially. If your endpoint does not return a 2xx
response, Annature will retry the request once per hour for up to 72 hours.
After three days of failed delivery attempts, the endpoint will be automatically disabled and the account owner will be notified via email.
You can monitor and troubleshoot webhook failures from the Developers section of the Annature dashboard.
Important: Your endpoint must return a 2xx
status code as quickly as possible to confirm successful receipt. Do not wait to complete internal processing before responding.
X-Annature-Signature
HTTP header. This signature can be used to validate the payload using your endpoint’s secret key.
Your signing secret is available in the Developers section of the dashboard. If the signature does not match, you should reject the request with an appropriate error code.
Signature verification is optional but highly recommended for production deployments.
2xx
HTTP status code. All other codes are treated as failures and will trigger retries.
Annature enforces a 10 second timeout for webhook requests. If your server does not respond within this window, the attempt is considered a failure — even if it eventually returns a 2xx
status code.
Avoid any lengthy processing or logic before responding. The ideal implementation: