In a multi-entity organization, subtotal templates enable you to create different sets of subtotals and then refer to them by name within a transaction definition. They simplify setting up and managing transactions definitions.
Returns a collection with a key, ID, and link for each order entry subtotal template.
OK
Bad Request
{- "ia::result": [
- {
- "key": "1",
- "id": "UK VAT",
- "href": "/objects/order-entry/subtotal-template/1"
}, - {
- "key": "2",
- "id": "InvoiceTax",
- "href": "/objects/order-entry/subtotal-template/2"
}, - {
- "key": "3",
- "id": "SalesInvoiceCharges",
- "href": "/objects/order-entry/subtotal-template/3"
}, - {
- "key": "4",
- "id": "Avalara",
- "href": "/objects/order-entry/subtotal-template/4"
}
], - "ia::meta": {
- "totalCount": 4,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Creates a new order entry subtotal template.
id required | string <= 100 characters The name of the order entry subtotal template. Example: "SalesInvoiceCharges" | ||||||||||||||||||||||||
Array of objects Details of the order entry subtotal template. | |||||||||||||||||||||||||
Array
|
Created
Bad Request
{- "id": "SalesInvoiceCharges",
- "lines": [
- {
- "description": "FreightCharge",
- "subtotalType": "discount",
- "lineNumber": 0,
- "valueType": "amount",
- "defaultValue": "10.00",
- "glAccount": {
- "id": "6850.03"
}, - "offsetGLAccount": {
- "id": "1200"
}, - "txnType": "debit"
}, - {
- "description": "Discount",
- "subtotalType": "discount",
- "lineNumber": 1,
- "valueType": "percent",
- "defaultValue": "5",
- "isApportioned": false,
- "glAccount": {
- "id": "2000.00"
}, - "offsetGLAccount": {
- "id": "1500.00"
}, - "txnType": "debit"
}, - {
- "description": "CASTax",
- "subtotalType": "charge",
- "lineNumber": 2,
- "valueType": "percent",
- "defaultValue": "6",
- "isApportioned": false,
- "glAccount": {
- "id": "2000.00"
}, - "offsetGLAccount": {
- "id": "1500.00"
}, - "txnType": "debit"
}
]
}
{- "ia::result": {
- "key": "3",
- "id": "SalesInvoiceCharges",
- "href": "/objects/order-entry/subtotal-template/3"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Returns detailed information for a specified order entry subtotal template.
key required | string System-assigned unique key for the subtotal template. Example: 52 |
OK
Bad Request
{- "ia::result": {
- "key": "3",
- "id": "SalesInvoiceCharges",
- "moduleKey": "8.SO",
- "lines": [
- {
- "id": "4",
- "key": "4",
- "description": "FreightCharge",
- "subtotalType": "discount",
- "lineNumber": 0,
- "valueType": "amount",
- "defaultValue": "10.00",
- "isApportioned": false,
- "glAccount": {
- "key": "297",
- "id": "6850.03",
- "href": "/objects/general-ledger/account/297"
}, - "offsetGLAccount": {
- "key": "36",
- "id": "1200",
- "href": "/objects/general-ledger/account/36"
}, - "txnType": "debit",
- "applyToLineNumber": 0,
- "isTax": false,
- "isAvalaraTax": false,
- "href": "/objects/order-entry/subtotal-template-line/4"
}, - {
- "id": "5",
- "key": "5",
- "description": "Discount",
- "subtotalType": "discount",
- "lineNumber": 1,
- "valueType": "percent",
- "defaultValue": "5",
- "isApportioned": false,
- "glAccount": {
- "key": "121",
- "id": "2000.00",
- "href": "/objects/general-ledger/account/121"
}, - "offsetGLAccount": {
- "key": "122",
- "id": "1500.00",
- "href": "/objects/general-ledger/account/122"
}, - "txnType": "debit",
- "applyToLineNumber": 0,
- "isTax": false,
- "isAvalaraTax": false,
- "href": "/objects/order-entry/subtotal-template-line/5"
}, - {
- "id": "7",
- "key": "7",
- "description": "CASTax",
- "subtotalType": "charge",
- "lineNumber": 2,
- "valueType": "percent",
- "defaultValue": "6",
- "isApportioned": false,
- "glAccount": {
- "key": "121",
- "id": "2000.00",
- "href": "/objects/general-ledger/account/121"
}, - "offsetGLAccount": {
- "key": "122",
- "id": "1500.00",
- "href": "/objects/general-ledger/account/122"
}, - "txnType": "debit",
- "applyToLineNumber": 0,
- "isTax": false,
- "isAvalaraTax": false,
- "href": "/objects/order-entry/subtotal-template-line/7"
}
], - "audit": {
- "createdDateTime": "2024-05-15T16:46:11Z",
- "modifiedDateTime": "2024-05-15T16:46:11Z",
- "createdBy": "1",
- "modifiedBy": "1"
}, - "href": "/objects/order-entry/subtotal-template/3"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Updates an existing order entry subtotal template by setting field values. Any fields not provided remain unchanged.
key required | string System-assigned unique key for the subtotal template. Example: 52 |
Array of objects Details of the order entry subtotal template. | |||||||||||||||||||||||||
Array
|
OK
Bad Request
{- "lines": [
- {
- "key": "4",
- "glAccount": {
- "id": "6850.03"
}
}
]
}
{- "ia::result": {
- "key": "3",
- "id": "SalesInvoiceCharges",
- "href": "/objects/order-entry/subtotal-template/3"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Deletes an order entry subtotal template.
key required | string System-assigned unique key for the subtotal template. Example: 52 |
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
}
}
Use the query service to find subtotal templates that meet certain criteria and to specify the properties that are returned.
OK