PayOut IBAN (UAH) h2h¶
The request contains the following fields:¶
| Field | Description |
|---|---|
merchant |
unique merchant identifier; |
method |
payout method, integer number: 34 – Payout Iban UAH; |
payout_id |
merchant system outgoing payment number; |
account |
IBAN bank account number; |
full_name |
first and last name in Latin characters. Maximum length is 30 characters; |
customs_card |
client’s payment card number; |
customs_inn |
clients identification code; |
amount |
amount of the transaction in currency, separator character is a period “.”; |
currency |
transaction currency “UAH”; |
sign |
digital signature with the merchant’s key. All fields are used. Hashed using the MD5 method (for more details read the “Digital signature in requests” section). |
Example of the request:
Example of the request
application/json
The response contains the fields:¶
| Field | Description |
|---|---|
status |
transaction status:Success – the payment was made successfully (the status is final)Pending – the payment is new or is in the line for processing. The Pending status requires an additional request (for more details read the “Payment Status Request (payment)” section).Blocked – payment rejected (final status)Error – received data error. The response contains a signature with an empty key (the status is not final and is the basis for finding out the reason of this status); |
code |
transaction status code; |
payout_id |
the number of the outgoing payment in the merchant’s system; |
description |
status description; |
sign |
digital signature with the merchant’s key. |
An example of a response is a Success status:
Example of the response
application/json
An example of a response is the Pending status:
Example of the response
application/json
An example of a response is the Error status:
Example of the response
application/json
Final status (callback)¶
To notify the merchant that the transaction has received the final status (for example, from “Pending” to “Success”), the callback mechanism is used.
For more information read the Callbacks section.