Skip to main content
API Reference

Location API

Manage warehouse layout, bin locations, zones, and storage optimization.

Endpoints

GET/locationsList all locations
POST/locationsCreate location
GET/locations/{id}Get location details
PUT/locations/{id}Update location
GET/zonesList warehouse zones
POST/zonesCreate zone

Create Location

Add a new bin location to your warehouse layout.

Request
POST /wms/v1/locations
Content-Type: application/json

{
  "warehouse_id": "WH-001",
  "zone_id": "ZONE-A",
  "location_code": "A-01-01",
  "type": "bin",
  "dimensions": {
    "width": 24,
    "height": 48,
    "depth": 36
  },
  "max_weight": 500,
  "pickable": true,
  "replenishable": true
}

Location Types

Bin

Standard storage location for picking and putaway

Bulk

Floor or pallet locations for bulk storage

Next Steps