Skip to main content

Release 2026-04-01

This release adds a webhook improvement and includes substantial under-the-hood engineering work across the platform.

The payment_captured webhook now includes a capture ID to simplify reconciliation and downstream processing. Alongside this public change, we also implemented a broad set of internal backend and data-layer improvements to support reliability, maintainability, and future product capabilities.

Capture ID added to the payment_captured webhook

The payment_captured webhook payload now includes a capture ID. This gives platforms a direct reference to the capture operation associated with the payment event.

payment_captured webhook
{
"type": "payment_captured",
"data": {
"id": "pay_4tbftjwzxja1h71nzas1g0g1xm",
"origin": "checkout",
"reference": "ORD-20260401-001",
"capture_id": "cap_4tbftjwzxja1h71nzas1g0g1xm"
}
}

For more information, see the payment_captured webhook documentation.