Skip to main content

InvoiceLineItem

A single line on an invoice, referencing a SKU with quantity, unit price, and line total.

skuIdstring

Reference to the SKU being invoiced.

Example: 1042
skuNamestring

Display name of the SKU.

Example: Roasted Garlic Hummus
descriptionstring

Line item description.

Example: Roasted Garlic Hummus - 16oz
quantitynumber

Quantity invoiced.

Example: 500
unitstring

Unit of measure.

Example: lbs
unitPricenumber

Price per unit.

Example: 12.5
amountnumber

Line total (quantity x unit price).

Example: 6250
InvoiceLineItem
{
"skuId": "1042",
"skuName": "Roasted Garlic Hummus",
"description": "Roasted Garlic Hummus - 16oz",
"quantity": 500,
"unit": "lbs",
"unitPrice": 12.5,
"amount": 6250
}