Skip to main content

BillLineItem

A single line on a bill. Can represent an item charge, freight, tax, discount, service fee, or miscellaneous cost.

lineTypestring

Type of charge.

Possible values: [item, freight, tax, discount, service, misc]

Example: item
skuCodestring

Product code (primarily for item type lines).

Example: 2087
descriptionstring

Line item description.

Example: Organic Tahini
quantitynumber

Quantity billed.

Example: 200
unitOfMeasurestring

Unit of measure.

Example: lbs
unitPricenumber

Price per unit.

Example: 3.25
taxRatenumber

Tax rate as a decimal (e.g., 0.08 for 8%).

Example: 0.08
taxAmountnumber

Tax amount for this line.

Example: 52
lineAmountnumber

Line total.

Example: 650
BillLineItem
{
"lineType": "item",
"skuCode": "2087",
"description": "Organic Tahini",
"quantity": 200,
"unitOfMeasure": "lbs",
"unitPrice": 3.25,
"taxRate": 0.08,
"taxAmount": 52,
"lineAmount": 650
}