input CreateLocationInput
Fields
| Field | Type | Description |
|---|---|---|
warehouse_id | String! | Public API warehouse ID. Use this when passing or filtering by a warehouse; warehouse fields are display values or nested objects. |
name | String! | Human-readable name for this location. |
zone | String! | Zone for this location. |
location_type_id | String | Public API location type ID that identifies the related record. |
pickable | Boolean | Whether inventory in this location can be picked for fulfillment. |
sellable | Boolean | Whether inventory in this location counts toward sellable availability. |
staging | Boolean | Sets the location as a staging area for wholesale orders. Requires wholesale feature to be enabled for your account. |
is_cart | Boolean | Whether this location is cart. |
pick_priority | Int | Pick priority as a numeric value. |
dimensions | DimensionsInput | Package or item dimensions. Length, width, and height are in inches unless account or carrier configuration specifies another unit. |
temperature | String | Temperature for this location. |
Referenced By
- location_create Mutation
Example
{
"warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
"name": "A01-01-01",
"zone": "A",
"location_type_id": "TG9jYXRpb25UeXBlOjEyMzQ=",
"pickable": true,
"sellable": true,
"staging": true,
"is_cart": true,
"pick_priority": 1,
"dimensions": {length: 12.5, width: 8.0, height: 4.0},
"temperature": "ambient"
}