connection.sync_completed
Webhook events · Sync
A full sync round-trip finished successfully.
Subscribe
curl
curl https://api.chronapilot.com/v1/webhook_endpoints \ -X POST \ -H "Authorization: Bearer sk_live_…" \ -d '{ "url": "https://your-app.com/webhooks/chronapilot", "events": ["connection.sync_completed"] }'
Delivery payload
JSON
{
"id": "whe_8x9y0z1a2b",
"type": "connection.sync_completed",
"api_version": "2026-05-20",
"created": 1716247200,
"data": {
"object": {
"connection_id": "con_1abc2def3ghi",
"events_added": 12,
"events_updated": 4,
"events_removed": 1
}
},
"livemode": true,
"request_id": "req_1A2b3C4d5E6f"
}When it fires
A full sync round-trip finished successfully. See the Sync concepts for an overview of the surrounding lifecycle.
Handling tips
- Treat the delivery as the latest state. Re-fetch the resource if you need confirmation against the source of truth.
- Dedupe on id — the same event may arrive more than once.
- Respond with 2xx within 8 seconds to avoid retry pressure.