OUTBOUND WEBHOOKS
Your system reacts to every sales event.
Register a URL from the developer Workbench and pick the events you care about. When a quote is created, sent, approved, or paid, when an invoice is issued, or when a client, product, task, or payment promise changes, Cord POSTs the JSON payload. Each delivery is signed with HMAC-SHA256 and a timestamp so you can verify it came from Cord. If your server fails, Cord retries with backoff up to 11 times, and every attempt is logged so you can replay it.
- Header X-Cord-Signature-V1: t=<unix>,v1=<hmac>, with replay protection
- Payload with id, folio, status, currency, total, client and public link
- Delivery log with status, latency and a replay button
{
"event": "quote.paid",
"data": {
"folio": "COT-0149",
"total": 196469.2,
"cliente": "El Zarco"
}
}