Journal entry tax entries

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.

List journal entry tax entries

get/objects/general-ledger/journal-entry-tax-entry

Returns a collection of journal entry tax entries with a key, ID, and link for each account.

SecurityOAuth2
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "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
    }
}

Get a journal entry tax entry

get/objects/general-ledger/journal-entry-tax-entry/{key}

Returns detailed information for a specified journal entry tax entry.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned key for the journal entry tax entry.

Example: 55
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "key": "300",
    • "id": "300",
    • "basetaxAmount": "100",
    • "taxAmount": "100",
    • "description": "Standard Rate for UK Import Services",
    • "taxRate": 5.5,
    • "taxDetail": {
      • "id": "UK Export Reduced Rate",
      • "key": "24",
      • "href": "/objects/tax/tax-detail/24"
      },
    • "journalEntry": {
      • "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
    }
}

Query journal entry tax entries

post/services/core/query

Use the query service to find journal entry tax entries that meet certain criteria and to specify the properties that are returned.

SecurityOAuth2
Responses
200

OK

Request samples