Credit card transaction templates provide a predefined structure to standardize credit card transactions. By applying a transaction template to each credit card transaction, you ensure the transaction is recorded consistently, with fields such as payee and tax implications automatically populated.
Returns a collection of credit card transaction templates with a key, ID, and link for each template. 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": "2",
- "id": "CC-TXN-002 Travel",
- "href": "/objects/cash-management/credit-card-txn-template/2"
}, - {
- "key": "3",
- "id": "CC-TXN-003 Accommodation",
- "href": "/objects/cash-management/credit-card-txn-template/3"
}, - {
- "key": "4",
- "id": "CC-TXN-004 Meals",
- "href": "/objects/cash-management/credit-card-txn-template/4"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Creates a new credit card transaction template.
id required | string Unique identifier for the credit card transaction template. Example: "CC-TXN-001" | ||||||||||||||||||
name required | string Name for the credit card transaction template. Example: "CC-TXN-001 - Business Purchases - Office Supplies" | ||||||||||||||||||
description | string Description for the credit card transaction template. Example: "Credit card transaction template for purchasing business office supplies" | ||||||||||||||||||
payee | string Payee associated with the credit card transactions using this template. Example: "Office Solutions" | ||||||||||||||||||
taxImplication | string or null Default: null Defines how tax-related details are handled for credit card transactions using this template. Only applies to companies using the Taxes application. Example: "inbound" | ||||||||||||||||||
object Defines the tax structure to be applied to credit card transactions using this template. Only applies to companies using the Taxes application. | |||||||||||||||||||
| |||||||||||||||||||
object Specifies the tax solution used to calculate or manage taxes for credit card transactions using this template. Only applies to companies using the Taxes application. | |||||||||||||||||||
| |||||||||||||||||||
Array of objects Line items for the credit card transactions using this template. | |||||||||||||||||||
Array
| |||||||||||||||||||
status | string Default: "active" Object status. Active objects are fully functional. Inactive objects are essentially hidden and cannot be used or referenced. Example: "active" |
Created
Bad Request
{- "id": "CC-TXN-005 Software NA",
- "name": "Software NA - CC TXNs",
- "description": "Template for North American software credit card transactions.",
- "lines": [
- {
- "lineNumber": 1,
- "isBillable": true,
- "glAccount": {
- "key": "326"
}, - "dimensions": {
- "location": {
- "id": "North America"
}
}
}
]
}
{- "ia::result": {
- "key": "78",
- "id": "CC-TXN-078",
- "href": "/objects/cash-management/credit-card-txn-template/78"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Returns detailed information for a specified credit card transaction template.
key required | string System-assigned unique key for the credit card transaction template. Example: 3 |
OK
Bad Request
{- "ia::result": {
- "key": "3",
- "id": "CC-TXN-VAT-003",
- "name": "VAT Payment - CC TXNs",
- "description": "Template for VAT payments using a credit card.",
- "payee": "Revenue Service",
- "numberOfRulesUsingTemplate": 0,
- "status": "active",
- "audit": {
- "createdDateTime": "2025-04-11T12:56:46Z",
- "modifiedDateTime": "2025-04-11T12:56:46Z",
- "createdByUser": {
- "key": "159",
- "href": "/objects/company-config/user/159"
}, - "createdBy": "159",
- "modifiedByUser": {
- "key": "159",
- "href": "/objects/company-config/user/159"
}
}, - "taxImplication": "inbound",
- "taxSolution": {
- "key": "1",
- "id": "Australia - GST",
- "href": "/objects/tax/tax-solution/1"
}, - "taxSchedule": {
- "name": "G11 Other Acquisition",
- "key": "10",
- "id": "10",
- "href": "/objects/tax/purchasing-tax-schedule/10"
}, - "isInclusiveTax": true,
- "lines": [
- {
- "key": "3",
- "id": "3",
- "creditCardTxnTemplate": {
- "key": "3",
- "href": "/objects/cash-management/credit-card-txn-template/3"
}, - "memo": "VAT payment for Q1 2025",
- "glAccount": {
- "key": "249",
- "id": "6003",
- "name": "Input VAT",
- "href": "/objects/general-ledger/account/249"
}, - "dimensions": {
- "location": {
- "id": null,
- "name": null
}, - "project": {
- "key": null,
- "id": null,
- "name": null
}, - "customer": {
- "key": null,
- "id": null,
- "name": null
}, - "vendor": {
- "key": null,
- "id": null,
- "name": null
}, - "employee": {
- "key": null,
- "id": null,
- "name": null
}, - "item": {
- "key": null,
- "id": null,
- "name": null
}, - "class": {
- "key": null,
- "id": null,
- "name": null
}
}, - "lineNumber": 0,
- "accountLabel": {
- "id": null
}, - "exchangeRate": {
- "date": null,
- "typeId": null,
- "rate": null
}, - "isBillable": null,
- "audit": {
- "createdDateTime": "2025-04-11T12:56:46Z",
- "modifiedDateTime": "2025-04-11T12:56:46Z",
- "createdByUser": {
- "key": "159",
- "href": "/objects/company-config/user/159"
}, - "createdBy": "159",
- "modifiedByUser": {
- "key": "159",
- "href": "/objects/company-config/user/159"
}
}, - "href": "/objects/cash-management/credit-card-txn-line-template/3"
}
], - "href": "/objects/cash-management/credit-card-txn-template/3"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Updates an existing credit card transaction template by setting field values. Any fields not provided remain unchanged.
key required | string System-assigned unique key for the credit card transaction template. Example: 3 |
name | string Name for the credit card transaction template. Example: "CC-TXN-001 - Business Purchases - Office Supplies" | ||||||||||||||||||
description | string Description for the credit card transaction template. Example: "Credit card transaction template for purchasing business office supplies" | ||||||||||||||||||
payee | string Payee associated with the credit card transactions using this template. Example: "Office Solutions" | ||||||||||||||||||
taxImplication | string or null Default: null Defines how tax-related details are handled for credit card transactions using this template. Only applies to companies using the Taxes application. Example: "inbound" | ||||||||||||||||||
object Defines the tax structure to be applied to credit card transactions using this template. Only applies to companies using the Taxes application. | |||||||||||||||||||
| |||||||||||||||||||
object Specifies the tax solution used to calculate or manage taxes for credit card transactions using this template. Only applies to companies using the Taxes application. | |||||||||||||||||||
| |||||||||||||||||||
Array of objects Line items for the credit card transactions using this template. | |||||||||||||||||||
Array
| |||||||||||||||||||
status | string Default: "active" Object status. Active objects are fully functional. Inactive objects are essentially hidden and cannot be used or referenced. Example: "active" |
OK
Bad Request
{- "key": "189",
- "lines": [
- {
- "key": "160",
- "lineNumber": 1,
- "isBillable": false
}
]
}
{- "ia::result": {
- "key": "189",
- "id": "CC-TXN-189",
- "href": "/objects/cash-management/credit-card-txn-template/189"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Deletes a credit card transaction template.
key required | string System-assigned unique key for the credit card transaction template. Example: 3 |
No Content
Bad Request
{- "ia::result": {
- "ia::error": {
- "code": "invalidRequest",
- "message": "A POST request requires a payload",
- "errorId": "REST-1028",
- "additionalInfo": {
- "messageId": "IA.REQUEST_REQUIRES_A_PAYLOAD",
- "placeholders": {
- "OPERATION": "POST"
}, - "propertySet": { }
}, - "supportId": "Kxi78%7EZuyXBDEGVHD2UmO1phYXDQAAAAo"
}
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 0,
- "totalError": 1
}
}