Refund a charge
Marks a charge as Refunded (to payer). Supply the unique charge code that was returned when the charge was created.
Marks a charge as Refuned
POST
/charges/{chargeCode}/refund/
Path Parameters
Name
Type
Description
chargeCode*
string
Charge code
{
"statusCode": 201,
"time": "2022-03-12T18:12:59.255Z",
"total": 0
}
Example request
curl --location --request POST 'https://pay-api-sandbox.fizen.io/charges/code/OST1FNY35QDL/refund' \
--header 'X-FP-API-KEY: 7abd3993-daf7-4322-84c6-c86e04b3d884'
Example response
{
"statusCode": 201,
"time": "2022-03-12T18:17:58.957Z",
"total": 0
}
Last updated