Refund
POST https://prapi.tarlanpayments.kz/refund/api/v1/system/refund/partial
Headers
Name
Type
Description
Authorization*
String
Bearer Auto-rotation hash (see Signature Creating)
Request Body
Name
Type
Description
amount*
Integer
Refunded amount
transaction_id*
Integer
Transaction ID in the payment system
{
"status": true,
"message": "Success",
"result": "success"
}{
"status": false,
"status_code": 5103,
"message": "transaction not found",
"result": {}
}curl --location 'prapi.tarlanpayments.kz/refund/api/v1/system/refund/partial' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer sign' \
--data '{
"amount": 10,
"transaction_id": "refund"
}'Last updated