input CreateLocationInput
Fields
| Field | Type | Description |
|---|---|---|
warehouse_id | String! | |
name | String! | |
zone | String! | |
location_type_id | String | |
pickable | Boolean | |
sellable | Boolean | |
staging | Boolean | Sets the location as a staging area for wholesale orders. Requires wholesale feature to be enabled for your account. |
is_cart | Boolean | |
pick_priority | Int | |
dimensions | DimensionsInput | |
temperature | String |
Referenced By
- location_create Mutation
Example
{
"warehouse_id": "abc123",
"name": "abc123",
"zone": "abc123",
"location_type_id": "abc123",
"pickable": true,
"sellable": true,
"staging": true,
"is_cart": true,
"pick_priority": 987,
"dimensions": DimensionsInput,
"temperature": "abc123"
}