input UpdateLocationInput
Fields
| Field | Type | Description |
|---|---|---|
location_id | String! | Public API location ID for the location to update. |
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. |
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_update Mutation
Example
{
"location_id": "TG9jYXRpb246MTIzNA==",
"zone": "A",
"location_type_id": "TG9jYXRpb25UeXBlOjEyMzQ=",
"pickable": true,
"sellable": true,
"is_cart": true,
"pick_priority": 1,
"dimensions": {length: 12.5, width: 8.0, height: 4.0},
"temperature": "ambient"
}