POST /orders/{reference}/refunds
The unique order reference that was provided when creating the order. This is your merchant-specific identifier for the order. Use this reference to identify which order to perform operations on (e.g., capture, void, refund, get status).
ORD-2024-001234A unique reference identifier for this refund request. This must be unique per merchant.
12345001223The currency and amount to be refunded to the customer. The currency must match the currency of the original order. The amount must be a positive number with up to 2 decimal places. For full refund, this should equal the order amount + surcharge amount. For partial refund (if the APM supports it), this can be any amount up to the remaining refundable amount (captured amount minus any previously refunded amounts). The sum of all refunds cannot exceed the total captured amount.
{"amount":25,"currency":"AED"}A brief description or reason for the refund. This can be used to record why the refund was issued. This may be visible to the payment provider.
Customer requested return due to defective productExample Request/Response
{
"refundReference": "TgEHcPtpN2HSrTMK-0",
"refundAmount": {
"amount": 100,
"currency": "AUD"
},
"refundDescription": "Please refund this order"
}Last updated