input UpdatePurchaseOrderLineItemInput
Fields
| Field | Type | Description |
|---|---|---|
sku | String! | SKU. SKU matching is case-insensitive and ignores surrounding whitespace. |
quantity | Int | Quantity as a whole-unit count. |
quantity_received | Int | Quantity received as a whole-unit count. |
quantity_rejected | Int | Quantity rejected as a whole-unit count. |
sell_ahead | Int | Quantity allowed to sell ahead of receipt for this purchase order line item. |
price | String | Customer-facing charge amount as a decimal monetary value in the order currency; distinct from value/customs_value used for declared value. |
note | String | Human-readable note for this purchase order line item. |
Referenced By
Example
{
"sku": "BLUE-TEE-M",
"quantity": 2,
"quantity_received": 2,
"quantity_rejected": 2,
"sell_ahead": 2,
"price": "19.99",
"note": "Customer requested expedited handling."
}