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

Webhook Structure

id
string (UUID)
required
Unique identifier for this event
time
string (ISO 8601)
required
Timestamp of when the event occurred
type
string
required
The type of event. Value: payment.created
correlationId
string
Identifier to correlate the request with the response. Present only for outbound payments.
data
object
required
The event data containing the details below

Data Fields

data.paymentId
string (UUID)
required
Unique identifier of the created payment
data.scheme
string
required
Payment scheme. Available values: SCT, SCT_INST
data.direction
string
required
Payment direction. Available values: INBOUND, OUTBOUND

Request Example

{
  "id": "b7c4d2e1-3a5f-4b8c-9d1e-6f2a8c4e0b7d",
  "time": "2025-01-15T10:30:00Z",
  "type": "payment.created",
  "correlationId": "req-12345",
  "data": {
    "paymentId": "019cde3b-a71f-7c4d-b832-4e9f1a2d5c8b",
    "scheme": "SCT",
    "direction": "OUTBOUND"
  }
}
Last modified on March 25, 2026