Skip to main content
This webhook sends notifications when payment/payment return status changes to one of the following statuses: Created, To sign, Signed, Accepted, Completed, Some problems, Cancelled, Rejected.

Webhook Details

trx_id
integer
required
Transaction ID
end_to_end_id
string
required
End-to-end transaction identifier
type
string
required
Transaction type. Available values: “Payment”, “Payment return”, “Payment cancellation”, “CSM fees”, “Reverse payment”, “Adjustment”
direction
string
required
Transaction direction. Available values: “INBOUND”, “OUTBOUND”
amount
integer
required
Transaction amount in cents
currency
string
required
Transaction currency. Available values: “EUR”
status
string
required
Transaction status. Available values: “Created”, “To sign”, “Signed”, “Accepted”, “Completed”, “Some problems”, “Cancelled”, “Rejected”, “Pending confirmation”
updated_at
string
required
Date and time when status was updated (format: YYYY-MM-DD HH:MM:SS.ffffff)
debtor_iban
string
Debtor IBAN
creditor_iban
string
Creditor IBAN

Request Example

{
  "trx_id": 2018845,
  "end_to_end_id": "2302231660139326",
  "type": "Payment",
  "direction": "OUTBOUND",
  "amount": 10657,
  "currency": "EUR",
  "status": "Created",
  "updated_at": "2023-02-23 07:49:37.524808",
  "debtor_iban": "LT543210010000000003",
  "creditor_iban": "LT123450010000000004"
}

Retry Mechanism

There is a retry mechanism - if an endpoint fails, the notification will be repeatedly sent until it is successfully delivered. During this retry process, all other notifications will be held back and will only be delivered once the initially blocked notification is successfully sent.