Webhooks
Overview
Section titled “Overview”Webhooks notify your application when events happen — such as a payment link or checkout completing.
Example event payload
Section titled “Example event payload”{ "id": "evt_placeholder_123", "type": "payment_link.completed", "data": { "id": "plink_placeholder_123", "amount": 2000, "currency": "usd" }}Verifying webhooks
Section titled “Verifying webhooks”Real signature verification will be documented once the webhook signing scheme is implemented. Do not treat unsigned payloads as authentic.
Retry behavior
Section titled “Retry behavior”Placeholder — retry/backoff behavior will be documented alongside the real implementation.