Refund API Requests
Version 1.0
POST https://api-dev.cruisepay.finance/api/v1/initiateRefund
Authentication
Refund requests must be authenticated using a Bearer token.
Authorization: Bearer ••••••••••••••
Request Parameters
Refund Details
Original transaction's invoice number.
Invoice0001
Refund Currency
3 Letter Currency Code
USD
Amount to refund. Must be less than or equal to the original transaction amount.
25.00
Reason for initiating the refund.
Customer requested refund
Any random ID value to denote the particular request. Optional Field
654321
Payload Structure
{
"invoiceNumber": "0004invoice",
"currency": "USD",
"refundAmount": "40.00",
"reason": "Requested by Client",
"refundId": "654321" // Optional
}
Callback Responses