Webhooks — REST API
Receiving webhooks
Simiz sendsPOST requests to your configured webhook URL with the event payload in the body and a signature in the X-Simiz-Signature header (format: t=<ts>,v1=<hex>).
Signature verification with cURL + openssl
Verification in different languages
- Node.js
- Python
- PHP
- Go
Responding to webhooks
Your endpoint must:- Return a
2xxstatus code within 30 seconds - Process the event asynchronously if your logic takes longer

