Skip to main content

Refund request

POST 

/api/v1/transaction-refund

After the successful transaction, you can submit a refund request using the information provided below

🔋 Sample request payload

{
"merchantCode": "842217", // Pass merchant code
"refundAmount": "10.000",
"refundMethod": "1", // "1" for Full Refund , "0" for partial
"token": "TXN1234560490040400404000404004" // Invoice token number
}

🎯 Note: Payload must be encrypted before being sent to the server. To access the response data, decrypt it upon receiving the response from the server

⚡️ Payload details

Fields NameDescriptionRequired
merchantCodePass the merchant code ✅ Yes
refundAmountPass the refund amount ✅ Yes
refundMethodPass the refund method "1" or "2" ✅ Yes
tokenPass the transaction token number ✅ Yes

📌 Types of refund methods

Types Description Value
Full To process a complete refund of the transaction amount "1"
Partial To process a partial refund of the total transaction amount "2"

Request

Responses

Refund request successfully sent, Decrypt the response from the server to see the final result