For VAT enabled transactions, journal entries will have tax entries. Providing multiple tax entries is allowed if the tax solution supports it (AU, GB, FR). For ZA, only one tax entry is allowed.
Returns a collection of journal entry tax entries with a key, ID, and link for each account.
OK
Bad Request
{- "ia::result": [
- {
- "key": "8",
- "id": "8",
- "href": "/objects/general-ledger/journal-entry-tax-entry/8"
}, - {
- "key": "9",
- "id": "9",
- "href": "/objects/general-ledger/journal-entry-tax-entry/9"
}, - {
- "key": "10",
- "id": "10",
- "href": "/objects/general-ledger/journal-entry-tax-entry/10"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Returns detailed information for a specified journal entry tax entry.
key required | string System-assigned key for the journal entry tax entry. Example: 300 |
OK
Bad Request
{- "ia::result": {
- "key": "300",
- "id": "300",
- "baseTaxAmount": "100",
- "txnTaxAmount": "100",
- "taxRate": 5.5,
- "taxDetail": {
- "id": "UK Export Reduced Rate",
- "key": "24",
- "href": "/objects/tax/tax-detail/24"
}, - "journalEntryLine": {
- "id": "148",
- "key": "148",
- "href": "/objects/general-ledger/journal-entry-line/148"
}, - "href": "/objects/general-ledger/journal-entry-tax-entry/300"
}, - "ia::meta": {
- "totalCount": 1
}
}