input ReplaceInventoryInput
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. |
quantity | Int! | Quantity as a whole-unit count. |
reason | String | Human-readable reason for this inventory. |
location_id | String | Public API location ID that identifies the related record. |
lpn_id | String | Public API LPN ID that identifies the related record. |
includes_non_sellable | Boolean | Whether non-sellable inventory is included in the inventory operation. |
Referenced By
- inventory_replace Mutation
Example
{
"customer_account_id": "QWNjb3VudDoxMjM0",
"sku": "BLUE-TEE-M",
"warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
"quantity": 2,
"reason": "Customer requested expedited handling.",
"location_id": "TG9jYXRpb246MTIzNA==",
"lpn_id": "TGljZW5zZVBsYXRlTnVtYmVyOjEyMzQ=",
"includes_non_sellable": true
}