Skip to content

Webhooks

Webhooks notify your application when events happen — such as a payment link or checkout completing.

{
"id": "evt_placeholder_123",
"type": "payment_link.completed",
"data": {
"id": "plink_placeholder_123",
"amount": 2000,
"currency": "usd"
}
}

Real signature verification will be documented once the webhook signing scheme is implemented. Do not treat unsigned payloads as authentic.

Placeholder — retry/backoff behavior will be documented alongside the real implementation.