Callback Message Transfer

The payment gateway can generate multiple transactions for a single order.\ This may happen due to user input errors or issuer restrictions. For example: * A user may attempt payment several times. * Once restrictions are cleared (e.g., via contacting their bank), the transaction can be retried on the payment gateway page — without being redirected to the merchant. As a result, a single order may be linked to multiple transactions (some failed, one eventually successful).


🔗 Path Parameters

NameTypeRequiredDescription
URL_PARTNER_SYSTEMstringNotification handler endpoint on the partner's side

📨 Body Parameters

NameTypeDefaultRequiredDescription
idstringTransaction ID in the external system
dtdate2000-01-01 00:00:00✖️Date/time of the payout operation
amountstring00.00✖️Payout amount to be credited
resultint320✖️Operation status: 0 = fail, 1 = success
errorstring✖️Error message (only if result != 1)
destinationstring✖️Payout destination identifier (see destination list)
hashstringControl signature: md5(id + dt + amount + result + destination + secretKey)

🧾 Headers

HeaderTypeRequiredDescription
Content-TypestringMust be application/x-www-form-urlencoded

✅ Response

{
  "status": "received"
}


✅ Response

{
  "status": "received"
}