input CreateLineItemInput

Fields

FieldTypeDescription
skuString!
partner_line_item_idString!

A unique identifier, usually the customer's internal id. It should be unique across all the order's line items, and is recommended to be unique accross the entire store.

quantityInt!
priceString!
product_nameString
option_titleString
fulfillment_statusString
quantity_pending_fulfillmentInt
custom_optionsGenericScalar
custom_barcodeString
eligible_for_returnBoolean
customs_valueString

A decimal value used for customs

barcodeString
warehouse_idString

Set to lock to that warehouse. The item will not be moved in any multi-warehouse processing

Referenced By

Example

{
  "sku": "abc123",
  "partner_line_item_id": "abc123",
  "quantity": 987,
  "price": "abc123",
  "product_name": "abc123",
  "option_title": "abc123",
  "fulfillment_status": "abc123",
  "quantity_pending_fulfillment": 987,
  "custom_options": "abc123",
  "custom_barcode": "abc123",
  "eligible_for_return": true,
  "customs_value": "abc123",
  "barcode": "abc123",
  "warehouse_id": "abc123"
}