Payment Link Status Update
This webhook is triggered when a payment link status changes.
Payload
{
"apiKeyId": "string",
"type": "payment_link.status_updated",
"paymentLinkId": "string",
"status": "string",
"clientReferenceId": "string"
}
Fields
| Field | Type | Description |
|---|---|---|
apiKeyId | string | The API key ID associated with this webhook |
type | string | The event type (payment_link.status_updated) |
paymentLinkId | string | The unique identifier (ULID) of the payment link |
status | string | Can be paid, pending, or processing |
clientReferenceId | string | The client reference ID provided when creating the payment link |
Example
{
"apiKeyId": "01HXYZ1234567890ABCDEFGH",
"type": "payment_link.status_updated",
"paymentLinkId": "01HXYZ1234567890ABCDEFGH",
"status": "paid",
"clientReferenceId": "order-12345"
}