Tax entry details for VAT enabled credit card transactions, each line item will have applicable tax entry information. Providing multiple entries is allowed if the tax solution supports it (AU, GB, FR). For ZA, only one tax entry is allowed.
Returns a collection of credit card transaction tax entries with a key, ID, and link for each tax entry.
OK
Bad Request
{- "ia::result": [
- {
- "key": "792",
- "id": "792",
- "href": "/objects/cash-management/credit-card-txn-tax-entry/792"
}, - {
- "key": "797",
- "id": "797",
- "href": "/objects/cash-management/credit-card-txn-tax-entry/797"
}, - {
- "key": "831",
- "id": "831",
- "href": "/objects/cash-management/credit-card-txn-tax-entry/831"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Returns detailed information for a particular credit card transaction tax entry.
key required | string System-assigned unique key for the credit card transaction tax entry. Example: 99 |
OK
Bad Request
{- "ia::result": {
- "key": "300",
- "id": "300",
- "baseTaxAmount": "100",
- "txnTaxAmount": "100",
- "description": "Standard Rate for UK Import Services",
- "taxRate": 5.5,
- "purchasingTaxDetail": {
- "id": "UK Export Reduced Rate",
- "key": "24",
- "href": "/objects/tax/purchasing-tax-detail/24"
}, - "creditCardTxnLine": {
- "id": "148",
- "key": "148",
- "href": "/objects/cash-management/credit-card-txn-line/148"
}, - "href": "/objects/cash-management/tax/credit-card-txn-tax-entry/300"
}, - "ia::meta": {
- "totalCount": 1
}
}
Queries an object for filtered data.
object | string Object type to query, in the form Example: "cash-management/credit-card-txn-tax-entry" | ||||||||
fields | Array of strings List of fields to include in the response. Can be any combination of these:
Example: ["key","id","max:vendor.creditLimit"] | ||||||||
Array of equal (object) or not equal (object) or less than (object) or (less than or equal (object)) or greater than (object) or (greater than or equal (object)) or in (object) or not in (object) or between (object) or not between (object) or contains (object) or does not contain (object) or has (object) or starts with (object) or does not start with (object) or ends with (object) or does not end with (object) Filter conditions to select the objects to return based on their field values. You use operators and conditions to build your filter, such as Example: [{"$eq":{"status":"active"}},{"$gt":{"totalDue":"1000"}},{"$contains":{"name":"Acme"}}] | |||||||||
Array Any of: Field value must be equal to this specified value. For date fields, you can use these macro values that are relative to the current date or the
These are most useful for queries that you want to save and use repeatedly, such as for views or reports. Just change the For example,
| |||||||||
filterExpression | string Default: "and" Logical operators to apply when there are multiple filter conditions. The conditions in the Shortcuts:
Example: "(1 and 2) or 3" | ||||||||
| |||||||||
Array of objects Set the order of the results by specifying field names to sort by and whether they should be in ascending or descending order. Example: [{"totalDue":"asc"},{"lastPaymentMadeDate":"desc"}] | |||||||||
Array
| |||||||||
start | integer First record of the result set to include in the response. Example: 1 | ||||||||
size | integer Number of records to include in the result set, 4000 maximum. Example: 100 |
OK
Bad Request
{- "object": "cash-management/credit-card-txn-tax-entry",
- "filters": [
- {
- "$eq": {
- "date": "2025-04-11"
}
}
], - "fields": [
- "key",
- "id",
- "purchasingTaxDetail.id",
- "href"
], - "orderBy": [
- {
- "id": "asc"
}
]
}
{- "ia::result": [
- {
- "key": "1092",
- "id": "1092",
- "purchasingTaxDetail.id": "Sales tax for office purchases",
- "href": "/objects/cash-management/credit-card-txn-tax-entry/1092"
}, - {
- "key": "1148",
- "id": "1148",
- "purchasingTaxDetail.id": "Local tax on restaurant expense",
- "href": "/objects/cash-management/credit-card-txn-tax-entry/1148"
}, - {
- "key": "1330",
- "id": "1330",
- "purchasingTaxDetail.id": "VAT on SAAS subscription purchase",
- "href": "/objects/cash-management/credit-card-txn-tax-entry/1330"
}, - {
- "key": "1332",
- "id": "1332",
- "purchasingTaxDetail.id": "Canadian GST on business travel expense",
- "href": "/objects/cash-management/credit-card-txn-tax-entry/1332"
}
], - "ia::meta": {
- "totalCount": 4,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}