Skip to content

Voiding Transactions

To void a single RCC transaction by its itemId, you can use the following endpoint:

PUT /api/v3/RccTransactions/companycode/{companyCode}/{itemId}/void

Void Several RCC Transactions Using Reference Numbers

Section titled “Void Several RCC Transactions Using Reference Numbers”

To void multiple RCC transactions using their reference numbers, you can use the following endpoint:

PUT /api/v3/RccTransactions/companycode/{companyCode}/void/referencenumbers
{
"referenceNumbers": [
"string"
]
}

Void Several RCC Transactions (by Flex Item ID)

Section titled “Void Several RCC Transactions (by Flex Item ID)”

To void multiple RCC transactions by their Flex Item IDs, you can use the following endpoint:

PUT /api/v3/RccTransactions/companycode/{companyCode}/void/rccitemids
{
"rccItemIds": [
0
]
}