Refund

POST https://prapi.tarlanpayments.kz/refund/api/v1/system/refund/partial

Headers

NameTypeDescription

Authorization*

String

Bearer Auto-rotation hash (see Signature Creating)

Request Body

NameTypeDescription

amount*

Integer

Refunded amount

transaction_id*

Integer

Transaction ID in the payment system

{
    "status": true,
    "message": "Success",
    "result": {
        "transaction_id": 999,
        "transaction_status_code": 999
    }
}
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