Check for a Transaction
Learn about checking for transactions.
Check for 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/transaction-exists/{transaction id} | GET | transactionId | transactionId |
This request checks if the transaction with the specified transactionId
exists.
Path parameters
Parameter | Details | Description |
---|---|---|
transactionid | Required string length between 1 and 40 | An identifier that further defines the document and corresponds to the transaction stored in the host system. The Transaction ID is used for synchronization services, but is not used for reporting purposes. Stored in the Tax Journal as transSyncIdCode . |
Sample response - Check transaction
{
"transactionId": "string",
"transactionExistsIndicator": "string",
"meta": {
"app": "string",
"timeElapsed(ms)": 0,
"timeReceived": "2024-03-07T22:45:29Z",
"timeElapsedDetails": [
{
"key": "string",
"value": "string"
}
]
}
}
Updated 20 days ago