Skip to main content
This webhook is sent when a payment has failed.

Webhook Structure

eventType
string
required
The type of event. Value: PAYMENT_FAILED
payload
object
required
The event payload containing the details below

Payload Fields

payload.eventId
string
required
Unique identifier for this event
payload.paymentId
string (UUID)
required
Unique identifier of the failed payment
payload.scheme
string
required
Payment scheme. Available values: SCT, SCT_INST
payload.direction
string
required
Payment direction. Available values: INBOUND, OUTBOUND

Request Example

{
  "eventType": "PAYMENT_FAILED",
  "payload": {
    "eventId": "e1f6a4b3-8c2d-4e7f-b1a9-4d6c0e3f2b5a",
    "paymentId": "019cde3d-c93f-7e6b-da54-6a1b3c4e7f0d",
    "scheme": "SCT",
    "direction": "OUTBOUND"
  }
}