Supported events
How delivery works
- You create a webhook endpoint in Workspace settings -> Webhooks.
- You select one or more event types.
- Biqli creates an event after the product change commits.
- Biqli sends a signed JSON
POSTrequest to your URL. - Your server verifies the signature and event identity.
- Your server stores or queues the event and returns HTTP
2xx.
Common envelope
Every request has the same outer shape:Delivery headers
Biqli-Signature against the exact raw body before processing the JSON.
Important guarantees and responsibilities
- Biqli can deliver an event more than once. Deduplicate with the envelope
id. - Events can arrive later than the product action because delivery is queued.
- Return
2xxonly after your system has safely accepted the event. - Process expensive work asynchronously after acceptance.
- Do not depend on delivery order across different events.
- Keep the signing secret private and rotate it by replacing the endpoint if compromised.

