Reversals
An authorization reversal releases the hold that an authorization placed on a customer’s payment method funds.
POST /v1/payments/:id/reversal
curl –X POST 'https://api.firstoken.co/v1/payments/:id/reversal' \
--header 'Content-Type: application/json' \
--header 'x-api-key: YOUR API KEY' \
--data '{
"transaction_info": {
"type": "authorization_reversal",
"reference_code": "123456789"
},
"reversal_info": {
"amount_details": {
"total_amount": 1000
}
},
"device_info": {
"ip_address": "12.7.8.120"
}
}'
Last updated
Was this helpful?