Skip to main content

Execution Response

Execution Response

Successful response parameters

HTTP status: 200 OK Content-Type: application/json

NameFormatDescription
idnumberPayment identification number
transactionIdnumberTransaction identification number
statusstring, enumeratedStatus of the executed payment: PENDING, SCHEDULED, PROCESSED, FAILED
metadataobjectAdditional details of the executed payment

Metadata:

NameFormatDescription
amountfloating point numericActual payment amount deducted from merchant account (excluding fees)
currency3-letter currency codeThe currency of the deducted amount according to ISO 4217.
instrumentstringIdentification type of the payout: BANKWIRE, ONLINE_BANKING
tokenstringA UUID representing the payment instrument token id for subsequent payouts without payment instrument, payee or merchant client fields

Error response parameters

HTTP status: 4XX Content-Type: application/json

NameFormatDescription
codenumberNumeric error code of the problem
messagestringShort description of the problem
descriptionstringDetailed description of the problem

Example execution response (success)

{
"id": "5024699328",
"transactionId": "5086059195",
"status": "SCHEDULED",
"metadata": {
"amount": "10.225838",
"currency": "EUR",
"instrument": "BANKWIRE",
"token": "bd92dbfb-fd99-4e21-9ec3-5629ac2bf81e"
}
}

Example execution response (error)

{
"error": {
"code": "7007",
"message": "Limits not met",
"details": [
"5dfdc472-d4e4-4c50-b5ca-1ca0ead67666",
"Limits not met.",
"Limits not met"
]
}
}

Execution response error messages

CodeMessageDescription
7001Invalid request.The request provided does not match the required format.
7002Invalid signature.The provided request signature does not match the required format.
7003Session expired.The session has expired.
7004Invalid session data.Invalid session data.
7005Insufficient balanceThe balance is insufficient to create the payout.
7006Account restrictedThe account is restricted.
7007Limits not metMin limit not met.
7008Per transaction limit exceededPer transaction limit exceeded.
7009Daily limit exceededDaily limit exceeded.
7010Weekly limit exceededWeekly limit exceeded.
7011Monthly limit exceededMonthly limit exceeded.
7012Country blocked for payouts.The bank account's country is blocked for payouts.
7013Payout to this country is not enabled for your account.Payout to this country is not enabled for your account.
7014Account not found.Account could not be found.
7015Recipient country blocked for payouts.Recipient country is blocked for payouts.
7017Recipient country is blocked for gaming.The recipient's country is blocked for gaming.
7018Recipient Instrument country is blocked for gaming.The recipient's instrument country is blocked for gaming.