Skip to main content
This webhook is sent when a transaction has been successfully executed in the ledger.

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: transaction.executed
correlationId
string
Identifier to correlate the request with the response. Present only for client-initiated transactions.
data
object
required
The event data containing the details below

Data Fields

data.referenceId
string
required
Reference identifier linking transaction to its origin (e.g., payment identification)
data.referenceSource
string
required
Source system that initiated the transaction. Available values: PAYMENT, CLIENT, PLAIS, PAYMENT_CARD
data.transactionId
string (UUID)
required
Unique identifier of the executed transaction
data.ledgerTransactionId
integer
required
Identifier of the transaction in the ledger system
data.postings
array
required
List of postings (debits and credits) that make up the transaction
data.createdAt
string (ISO 8601)
required
Timestamp when the transaction was created

Request Example

{
  "id": "a3f8e2b1-5c7d-4e9f-b8a2-1d4c6e9f0a3b",
  "time": "2025-01-15T10:30:00Z",
  "type": "transaction.executed",
  "correlationId": "550e8400-e29b-41d4-a716-446655440000",
  "data": {
    "referenceId": "PAY-123456",
    "referenceSource": "PAYMENT",
    "transactionId": "019bdb2a-960f-789d-8955-21720e6cdeed",
    "ledgerTransactionId": 12345,
    "postings": [
      {
        "id": "c1d2e3f4-5a6b-7c8d-9e0f-1a2b3c4d5e6f",
        "source": "CUSTOMER:019bdb2a-960f-789d-8955-21720e6cdeee:019bdb2a-960f-789d-8955-21720e6cdeed:CURRENT",
        "destination": "INTERNAL:CLEARING:OUTBOUND",
        "amount": 10000,
        "currency": "EUR",
        "type": "CREDIT_TRANSFER",
        "details": "Payment for invoice #12345"
      },
      {
        "id": "d2e3f4a5-6b7c-8d9e-0f1a-2b3c4d5e6f7a",
        "source": "CUSTOMER:019bdb2a-960f-789d-8955-21720e6cdeee:019bdb2a-960f-789d-8955-21720e6cdeed:CURRENT",
        "destination": "INTERNAL:CLEARING:FEES",
        "amount": 100,
        "currency": "EUR",
        "type": "FEES",
        "details": "Fees for invoice #12345"
      }
    ],
    "createdAt": "2024-01-15T10:30:00.000Z"
  }
}
Last modified on March 25, 2026