Skip to main content

Incomplete payment

This event is emitted when a partial (less than the amount due) payment is made and the payment timer has expired.

Payload schema

Webhook payload

Use this schema when validating, storing, or transforming the incoming incompletePayment webhook payload.

id
string<uuid>
webhookId
string<uuid>
eventType
string
required
Allowed value:
incompletePayment
eventData
IncompletePaymentEventData
required
incompletePayment
ManagedPayment
required
radomData
paymentLink
PaymentLinkData
required

Examples

{
"id": "f01fa77a-6f71-45fd-884e-4212ec76e9e9",
"webhookId": "ad474121-b97e-479b-a180-60a21bda8532",
"eventType": "incompletePayment",
"eventData": {
"incompletePayment": {
"amount": "0.025289957500063169370000000",
"transactions": [
{
"token": null,
"amount": "0.02541704271363132600",
"network": "Ethereum",
"blockTimestamp": "2023-06-06T17:00:59Z",
"transactionHash": "0xc71037dc170a3a5e2221fbbed59920e6e84fb15b3e0f0db70162a2ce6f647d55"
}
],
"paymentMethod": {
"token": null,
"network": "Ethereum"
}
}
},
"radomData": {
"paymentSession": {
"paymentSessionId": "43d77d52-1e3b-4992-8b65-0c83ee7a6f21"
}
}
}