OUTBOUND WEBHOOKS
Your system reacts to every sales event.
Register a URL under Settings › Developers › Webhooks and pick the events you care about. When a quote is sent, viewed, approved, rejected, paid, or invoiced, Cord POSTs the JSON payload. Each delivery is signed with HMAC-SHA256 in the X-Cord-Signature header so you can verify it came from Cord. It's best-effort with one retry, and every attempt is logged so you can replay it.
- Header X-Cord-Signature: sha256=<hmac of the raw body> + X-Cord-Event
- Payload with id, folio, status, total, client and public link
- Delivery log with status, latency and a replay button in Settings
{
"event": "quote.paid",
"data": {
"folio": "COT-0149",
"total": 196469.2
}
}