input CreateWholesaleLineItemInput
Fields
| Field | Type | Description |
|---|---|---|
sku | String! | |
partner_line_item_id | String! | 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. |
quantity | Int! | |
price | String! | |
product_name | String | |
option_title | String | |
fulfillment_status | String | |
quantity_pending_fulfillment | Int | |
custom_options | GenericScalar | |
custom_barcode | String | |
eligible_for_return | Boolean | |
customs_value | String | A decimal value used for customs |
barcode | String | |
warehouse_id | String | Set to lock to that warehouse. The item will not be moved in any multi-warehouse processing |
unit_of_measure | String |
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",
"unit_of_measure": "abc123"
}