Skip to main content

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

FieldTypeDescription
apiKeyIdstringThe API key ID associated with this webhook
typestringThe event type (payment_link.status_updated)
paymentLinkIdstringThe unique identifier (ULID) of the payment link
statusstringCan be paid, pending, or processing
clientReferenceIdstringThe client reference ID provided when creating the payment link

Example

{
"apiKeyId": "01HXYZ1234567890ABCDEFGH",
"type": "payment_link.status_updated",
"paymentLinkId": "01HXYZ1234567890ABCDEFGH",
"status": "paid",
"clientReferenceId": "order-12345"
}