object ShippingPlanLineItem

Fields

FieldTypeDescription
idString

Public API ID for this identifiable.

legacy_idBigInt

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

account_idString

Public API account ID that identifies the related record.

warehouse_idString

Public API warehouse ID. Use this when passing or filtering by a warehouse; warehouse fields are display values or nested objects.

skuString

SKU. SKU matching is case-insensitive and ignores surrounding whitespace.

vendor_skuString

Vendor SKU. SKU matching is case-insensitive and ignores surrounding whitespace.

product_idString

Public API product ID that identifies the related record.

variant_idInt

Public API variant ID that identifies the related record.

quantityInt

Quantity as a whole-unit count.

quantity_receivedInt

Quantity received as a whole-unit count.

quantity_rejectedInt

Quantity rejected as a whole-unit count.

priceString

Customer-facing charge amount as a decimal monetary value in the order currency; distinct from value/customs_value used for declared value.

product_nameString

Product name for this shipping plan line item.

option_titleString

Option title for this shipping plan line item.

expected_weight_in_lbsString

Expected weight in lb in pounds.

fulfillment_statusString

Current fulfillment status; use the API status values returned by this field when filtering or updating.

sell_aheadInt

Quantity allowed to sell ahead of receipt for this shipping plan line item.

noteString

Human-readable note for this shipping plan line item.

partner_line_item_idString

Partner line item ID from the external store or upstream system.

barcodeString

Barcode value for the shipping plan line item.

updated_atISODateTime

Updated at as an ISO-8601 datetime, returned in UTC unless otherwise noted.

created_atISODateTime

Created at as an ISO-8601 datetime, returned in UTC unless otherwise noted.

productWarehouseProduct

Product associated with this shipping plan line item.

Referenced By

Example

{
  "id": "UmVjb3JkOjEyMzQ=",
  "legacy_id": 1234,
  "account_id": "QWNjb3VudDoxMjM0",
  "warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
  "sku": "BLUE-TEE-M",
  "vendor_sku": "VENDOR-BLUE-TEE-M",
  "product_id": "UHJvZHVjdDoxMjM0",
  "variant_id": 1234,
  "quantity": 2,
  "quantity_received": 2,
  "quantity_rejected": 2,
  "price": "19.99",
  "product_name": "July FBA Shipment",
  "option_title": "Size: Medium",
  "expected_weight_in_lbs": "1.25",
  "fulfillment_status": "pending",
  "sell_ahead": 2,
  "note": "Customer requested expedited handling.",
  "partner_line_item_id": "SHOPIFY-LINE-1",
  "barcode": "012345678905",
  "updated_at": "2026-07-09T15:30:00Z",
  "created_at": "2026-07-09T15:30:00Z",
  "product": {sku: "BLUE-TEE-M", quantity: 2}
}