added
Changelog 9/30/25
3 days ago
- Delete Transaction has been updated to now allow Multiple Reversals. Use the query parameter
?reversal
and include the currency and amount of the partial reversal in the request body.- Permissions must be enabled for clients performing multiple reversals.
- Clients should ensure to track the total reversal amounts to not exceed the total.
curl -X DELETE 'https://FQDN/v1/clients/ClientID/transactions/TransactionID?reversal'
-H 'Authorization: Bearer *token*'
-H 'Content-Type: application/json'
-d '{"currency": "840", "amount": "0.20"}'
-
Note: When performing an Auth & Capture void, and you receive a decline, you can retry a void with the query parameter
?void
without request body parameters. -
The Recipes section has been updated to include the following example requests in cURL, JavaScript in Python.
57. Delete Transaction - Reversal
Open Recipe
57.1 Delete Transaction - Multiple Reversals
Open Recipe
58. Delete Transaction - Void
Open Recipe
- The TabaPay Portal has been updated to display multiple partial reversals based on permissions enabled.