Refunds void

This endpoint is used to cancel previously made refund requests. A void request is declined when the request has already been sent to the processor.

Could be a refund request from a previous capture or a previous payment request.

POST /v1/payments/refunds/:id/void

curl –X POST https://api.firstoken.co/v1/payments/refunds/:id/void' \
--header 'Content-Type: application/json' \
--header 'x-api-key: YOUR API KEY' \
--data '{
    "transaction_info": {
        "type": "refund_void",
        "reference_code": "123456789"
    },
    "device_info": {
        "ip_address": "12.7.8.120"
    }
}'
Example of the JSON response
{
    "status": "success",
    "message": "Refund voided successful",
    "data": {
        "transaction_info": {
            "type": "refund_void_response",
            "reference_code": "123456789",
            "transaction_id": "0001709061572422813572",
            "request_id": "7090615737786366604953",
            "status": "Voided",
            "created_at": "2024-02-27T19:19:34Z"
        }
    }
}

Last updated

Was this helpful?