input CreateLocationInput

Fields

FieldTypeDescription
warehouse_idString!

Public API warehouse ID. Use this when passing or filtering by a warehouse; warehouse fields are display values or nested objects.

nameString!

Human-readable name for this location.

zoneString!

Zone for this location.

location_type_idString

Public API location type ID that identifies the related record.

pickableBoolean

Whether inventory in this location can be picked for fulfillment.

sellableBoolean

Whether inventory in this location counts toward sellable availability.

stagingBoolean

Sets the location as a staging area for wholesale orders. Requires wholesale feature to be enabled for your account.

is_cartBoolean

Whether this location is cart.

pick_priorityInt

Pick priority as a numeric value.

dimensionsDimensionsInput

Package or item dimensions. Length, width, and height are in inches unless account or carrier configuration specifies another unit.

temperatureString

Temperature for this location.

Referenced By

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"
}