Payment Refunds

Refunds are used to given back an amount of money to you, it can be used with a payment request ID. Unless otherwise specified, refunds must be requested within 60 days of a settlement.

POST /v1/payments/:id/refund

curl –X POST https://api.firstoken.co/v1/payments/:id/refund' \
--header 'Content-Type: application/json' \
--header 'x-api-key: YOUR API KEY' \
--data '{
    "transaction_info": {
        "type": "payment_refund",
        "reference_code": "123456789"
    },
    "refund_info": {
        "amount_details": {
            "total_amount": 1000,
            "currency": "COP"
        },
        "installments": 1
    },
    "device_info": {
        "ip_address": "12.7.8.120"
    }
}'
chevron-rightExample of the JSON responsehashtag

Last updated

Was this helpful?