object ShipmentLineItem

Fields

FieldTypeDescription
idString

Public API ID for this identifiable.

legacy_idBigInt

Numeric legacy ID for this identifiable; use only where legacy IDs are required.

line_item_idString

Public API line item ID that identifies the related record.

shipment_idString

Public API shipment ID that identifies the related record.

shipping_label_idString

Public API shipping label ID that identifies the related record.

quantityInt

Quantity as a whole-unit count.

line_itemLineItem

Line item associated with this shipment line item.

lotLotDEPRECATED Use lots instead.

Lot associated with this shipment line item.

lots[ShippedLineItemLot]

List of lots for this shipment line item.

Referenced By

Example

{
  "id": "UmVjb3JkOjEyMzQ=",
  "legacy_id": 1234,
  "line_item_id": "U2hpcG1lbnRMaW5lSXRlbToxMjM0",
  "shipment_id": "U2hpcG1lbnRMaW5lSXRlbToxMjM0",
  "shipping_label_id": "U2hpcG1lbnRMaW5lSXRlbToxMjM0",
  "quantity": 2,
  "line_item": {sku: "BLUE-TEE-M", quantity: 2},
  "lot": {sku: "BLUE-TEE-M", quantity: 2},
  "lots": [[{sku: "BLUE-TEE-M", quantity: 2}]]
}