Create a subtotal item
Creates a new subtotal item.
post/quickbooks-desktop/subtotal-items
Headers
Conductor-End-User-Idstring required
The ID of the End-User to receive this request.
Example:end_usr_1234567abcdefg
The ID of the End-User to receive this request.
Request body
Example request
{
"name": "Labor subtotal",
"barcode": {
"value": "012345678905"
},
"isActive": true,
"description": "Subtotal for all labor costs on this project",
"externalId": "12345678-abcd-1234-abcd-1234567890ab"
}Response
Returns the newly created subtotal item.
Example response
{
"id": "80000001-1234567890",
"objectType": "qbd_subtotal_item",
"createdAt": "2025-01-01T12:34:56+00:00",
"updatedAt": "2025-02-01T12:34:56+00:00",
"revisionNumber": "1721172183",
"name": "Labor subtotal",
"barcode": "012345678905",
"isActive": true,
"description": "Subtotal for all labor costs on this project",
"specialItemType": "finance_charge",
"externalId": "12345678-abcd-1234-abcd-1234567890ab",
"customFields": [
{
"ownerId": "0",
"name": "Customer Rating",
"type": "string_1024_type",
"value": "Premium"
}
]
}