Skip to main content
This webhook is sent when a payment has been created in the system.

Webhook Structure

eventType
string
required
The type of event. Value: PAYMENT_CREATED
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 created 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_CREATED",
  "payload": {
    "eventId": "b7c4d2e1-3a5f-4b8c-9d1e-6f2a8c4e0b7d",
    "paymentId": "019cde3b-a71f-7c4d-b832-4e9f1a2d5c8b",
    "scheme": "SCT",
    "direction": "OUTBOUND"
  }
}