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

Webhook Structure

eventType
string
required
The type of event. Value: PAYMENT_RETURNED
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 returned 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_RETURNED",
  "payload": {
    "eventId": "f2a7b5c4-9d3e-4f8a-c2ba-5e7d1f4a3c6b",
    "paymentId": "019cde3e-da40-7f7c-eb65-7b2c4d5f8a1e",
    "scheme": "SCT",
    "direction": "INBOUND"
  }
}