object LineItem
Fields
| Field | Type | Description |
|---|---|---|
id | String | |
legacy_id | Int | |
sku | String | |
partner_line_item_id | String | |
product_id | String | DEPRECATED Products should be referenced by sku |
quantity | Int | |
price | String | |
product_name | String | |
option_title | String | |
fulfillment_status | String | |
quantity_pending_fulfillment | Int | |
quantity_shipped | Int | |
warehouse | String | |
quantity_allocated | Int | |
backorder_quantity | Int | |
custom_options | GenericScalar | |
custom_barcode | String | |
eligible_for_return | Boolean | |
customs_value | String | |
warehouse_id | String | DEPRECATED Use order allocations instead |
locked_to_warehouse_id | String | This field was deprecated on accounts with Multi Warehouse Allocation rules |
subtotal | String | |
barcode | String | |
created_at | ISODateTime | |
updated_at | ISODateTime | |
order_id | String | |
shipped_line_item_lots | [ShippedLineItemLot] | |
serial_numbers | [LineItemSerialNumber] | |
promotion_discount | String | |
product | Product | |
tote_picks | [TotePick] |
Referenced By
- LineItemQuerySpecEdge Type
- Pick Type
- ReturnItemType Type
- ReturnLineItem Type
- ShipmentLineItem Type
- TotePick Type
- WholesaleLineItem Type
Example
{
"id": "abc123",
"legacy_id": 987,
"sku": "abc123",
"partner_line_item_id": "abc123",
"product_id": "abc123",
"quantity": 987,
"price": "abc123",
"product_name": "abc123",
"option_title": "abc123",
"fulfillment_status": "abc123",
"quantity_pending_fulfillment": 987,
"quantity_shipped": 987,
"warehouse": "abc123",
"quantity_allocated": 987,
"backorder_quantity": 987,
"custom_options": "abc123",
"custom_barcode": "abc123",
"eligible_for_return": true,
"customs_value": "abc123",
"warehouse_id": "abc123",
"locked_to_warehouse_id": "abc123",
"subtotal": "abc123",
"barcode": "abc123",
"created_at": "abc123",
"updated_at": "abc123",
"order_id": "abc123",
"shipped_line_item_lots": ShippedLineItemLot,
"serial_numbers": LineItemSerialNumber,
"promotion_discount": "abc123",
"product": Product,
"tote_picks": TotePick
}