Run in Apidog
The /Completion request is used to finished a preauthorized payment in the case of a two-phase payment. A merchant can perform this request if it has the relevant permissions in the system. Request Body Params application/json
{
"orderData" : {
"amount" : 10000 ,
"currency" : 980 ,
"description" : "Операція #304324"
} ,
"pageData" : {
"language" : "uk"
}
}
Request Code Samples
curl --location --request POST 'https://mock.apidog.com/m1/537337-0-default/Completion' \
--header 'ExtSystemid: ECOM_GOLD_BANK' \
--header 'login: SECURE_LOGIN' \
--header 'password: SECURE_PASSWORD' \
--header 'orderNumber: 1234' \
--header 'orderId: dbafea6c-3394-4f6a-a0d2-21d3d8e93e42' \
--header 'RegDate: 2023-09-12 12:16:00 ' \
--header 'x-uws-clientdn: GOLDENBANK' \
--header 'charset;' \
--header 'accept;' \
--header 'Content-Type: application/json' \
--data-raw '{
"orderData": {
"amount": 10000,
"currency": 980,
"description": "Операція #304324"
},
"pageData": {
"language": "uk"
}
}'
Responses application/json Generate Code
{
"orderParam" : {
"orderStatus" : 2 ,
"orderId" : "f390136a-77ad-43e1-9593-3ec72c791834" ,
"orderAuthParam" : {
"approvalCode" : "107429" ,
"authCode" : 2
}
}
}
Modified at 2025-06-26 12:35:32