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

Webhook Structure

eventType
string
required
The type of event. Value: PAYMENT_COMPLETED
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 completed 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_COMPLETED",
  "payload": {
    "eventId": "d9e5f3a2-7b1c-4d6e-a0f8-3c5b9d2e1a4f",
    "paymentId": "019cde3c-b82e-7d5a-c943-5f0a2b3d6e9c",
    "scheme": "SCT",
    "direction": "INBOUND"
  }
}