input AddProductToWarehouseInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | Use this when you are a 3PL acting on behalf of one of your customers. |
sku | String! | SKU. SKU matching is case-insensitive and ignores surrounding whitespace. |
warehouse_id | String! | Public API warehouse ID. Use this when passing or filtering by a warehouse; warehouse fields are display values or nested objects. |
on_hand | Int | On hand as a whole-unit count. |
inventory_bin | String | Primary inventory bin name for this warehouse product. |
inventory_overstock_bin | String | Overstock bin name for this warehouse product. |
reserve_inventory | Int | Whole-unit quantity to reserve from sellable availability for this warehouse product. |
replenishment_level | Int | Available only for accounts that use Dynamic Slotting and used specifically for replenishment reports. SKUs will appear on the replenishment report if inventory allocated and not enough in pickable bins, or if the pickable bin inventory is less than the replenishment level. |
replenishment_max_level | Int | The maximum inventory level in the pickable bin. Replenishment quantities are capped so that stock in the pickable bin does not exceed this value. |
replenishment_increment | Int | The increment used when replenishing inventory. The replenishment quantity is rounded up to the nearest multiple of this value. |
reorder_level | Int | Reorder level as a numeric value. |
reorder_amount | Int | Reorder amount as a numeric value. |
price | String | Customer-facing charge amount as a decimal monetary value in the order currency; distinct from value/customs_value used for declared value. |
value | String | Declared or purchase value as a decimal monetary amount; distinct from customer-facing price. |
value_currency | String | ISO 4217 currency code for monetary values on this warehouse product. |
active | Boolean | Whether the warehouse product should be active. |
Referenced By
- product_add_to_warehouse Mutation
Example
{
"customer_account_id": "QWNjb3VudDoxMjM0",
"sku": "BLUE-TEE-M",
"warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
"on_hand": 2,
"inventory_bin": "A01-01-01",
"inventory_overstock_bin": "OVR-01",
"reserve_inventory": 2,
"replenishment_level": 2,
"replenishment_max_level": 2,
"replenishment_increment": 2,
"reorder_level": 2,
"reorder_amount": 2,
"price": "19.99",
"value": "19.99",
"value_currency": "19.99",
"active": true
}