Reverse a Transaction
Learn about reversing transactions.
Reverse a transaction
Caution
Submitting Transaction Management requests outside of the suggested time period can result in calculation errors or duplicate transactions:
- For On-Premise and On-Demand deployments, Transaction Management requests must be executed prior to Tax Journal Purges that include impacted transactions.
- For Cloud deployments, Transaction Management requests must be executed within 90 days of tax calculation for impacted transactions.
Endpoint | Method | Key values | Required fields |
---|---|---|---|
/v2/transactions/{id}/reversal | POST | id | id |
This request performs a Reversal operation. It creates a second transaction with negated taxability amounts to "reverse" the original transaction.
Path parameters
Parameter | Details | Description |
---|---|---|
id | Required string length between 1 and 40 | The Transaction ID of the transaction to be reversed. This is a unique user-defined value that was provided on the original tax calculation. |
Sample request - Reversal
{
"data": {
"transactionId": "string",
"postingDate": "2024-03-07",
"documentNumber": "string"
}
}
Sample response - Reversal
{
"data": {
"transactionId": "string",
"postingDate": "2024-03-07",
"documentNumber": "string"
},
"meta": {
"app": "string",
"timeElapsed(ms)": 0,
"timeReceived": "2024-03-07T22:45:29Z",
"timeElapsedDetails": [
{
"key": "string",
"value": "string"
}
]
}
}
Updated 18 days ago