For VAT enabled transactions, an adjustment tax entry provides tax information about the adjustment line item it is associated with. Create and maintain adjustment tax entries from the owning AR adjustment line object.
Returns a collection with a key, ID, and link for each adjustment tax entry. This operation is mostly for use in testing; use the query service to find objects that meet certain criteria and to specify properties that are returned.
OK
Bad Request
{- "ia::result": [
- {
- "key": "8",
- "id": "8",
- "href": "/objects/accounts-receivable/adjustment-tax-entry/8"
}, - {
- "key": "9",
- "id": "9",
- "href": "/objects/accounts-receivable/adjustment-tax-entry/9"
}, - {
- "key": "10",
- "id": "10",
- "href": "/objects/accounts-receivable/adjustment-tax-entry/10"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Returns detailed information for a specified adjustment tax entry.
key required | string System-assigned unique key for the adjustment tax entry. Example: 33 |
OK
Bad Request
{- "ia::result": {
- "id": "2688",
- "key": "2688",
- "adjustmentLine": {
- "id": "2686",
- "key": "2686",
- "href": "/objects/accounts-receivable/adjustment-line/2686"
}, - "baseTaxAmount": "-25.00",
- "txnTaxAmount": "-25.00",
- "taxRate": 20,
- "orderEntryTaxDetail": {
- "id": "AUS Standard1",
- "key": "89",
- "href": "/objects/tax/order-entry-tax-detail/89"
}, - "href": "/objects/accounts-receivable/adjustment-tax-entry/2688"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}