Create a Hosted Refund
POST/hosted-refunds
Request
Header Parameters
A unique value, eg. a UUID.
- application/json
Body
A positive integer value in specified currency's smallest unit. e.g. $10 would be represented as 1000 (cents).
Possible values: [SGD
]
Three-letter ISO 4217 currency code in full uppercase. Must be a supported currency.
A string to reference (e.g. your refund ID, etc.) which can be used to reconcile the hosted refund with your own systems. This cannot exceed 255 characters.
Responses
- 200
OK
Response Headers
Acme-Mode
string
Has the value LIVE if the data exists in live production mode or the value TEST if the data exists in test sandbox mode.
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [PENDING
, SUCCEEDED
, FAILED
]
Status of the refund
Possible values: [SGD
]
Three-letter ISO 4217 currency code in full uppercase.
A string to reference (e.g. your refund ID, etc.) which can be used to reconcile the hosted refund with your own systems. This cannot exceed 255 characters.
{
"id": "string",
"status": "PENDING",
"hostedPaymentId": "string",
"amount": 4242,
"currency": "SGD",
"referenceId": "REF-1234567",
"createdAt": "2023-04-24T00:00:00.000000Z",
"updatedAt": "2023-04-24T00:00:00.000000Z"
}