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:
1042skuNamestring
Display name of the SKU.
Example:
Roasted Garlic Hummusdescriptionstring
Line item description.
Example:
Roasted Garlic Hummus - 16ozquantitynumber
Quantity invoiced.
Example:
500unitstring
Unit of measure.
Example:
lbsunitPricenumber
Price per unit.
Example:
12.5amountnumber
Line total (quantity x unit price).
Example:
6250InvoiceLineItem
{
"skuId": "1042",
"skuName": "Roasted Garlic Hummus",
"description": "Roasted Garlic Hummus - 16oz",
"quantity": 500,
"unit": "lbs",
"unitPrice": 12.5,
"amount": 6250
}