Blowhorn API Documentation
  • Welcome
  • API REFERENCE
    • Authentication
      • Customer Authentication
      • Partner Authentication
    • Orders
      • Shipment Orders
      • Marketplace Orders
      • Cancel Order
      • Order Event
      • Order Event History
      • ETA
      • Delivery Partner Details
      • Order Documents
    • Drivers
      • Available Vehicle Class
      • Driver Availability
      • Payday Loan Eligibility
      • Driver Details
      • Driver Balance
      • Driver Deductions
    • Locations
      • Serviceability
      • Hubs
      • Coverage
      • Location Type
      • Storage Type
      • Location Zone
      • Location
    • WMS Inbound
      • Clients
      • Suppliers
      • Purchase Orders
      • Advance Shipping Notice
      • Goods Receipt Note
    • WMS Outbound
      • Shipping Label
      • Shipping Manifest
    • Inventory
      • Product Group
      • Tracking Level
      • Pack Config
      • SKU
      • Inventory
      • Inventory Transaction
    • Webhooks
      • HMAC Authentication
      • Order Status
      • Trip Status
      • Inventory Status
  • Help
    • FAQ
Powered by GitBook
On this page

Was this helpful?

  1. API REFERENCE
  2. Locations

Location Zone

Create Location Zones

POST /locationzones

Use this api to create location zones in the warehouse. A zone is a set of locations that share common properties. A warehouse is divided into multiple zones based on its attributes, like package type and velocity codes.

Headers

Name
Type
Description

API_KEY

string

Contact Blowhorn team for API Key

{
  "status": "PASS",
  "message": {
    "name": "ankit",
    "is_putaway": true,
    "is_packing": true
  }
}
{
  "status": "FAIL",
  "message": "`value` for `name` is mandatory for Wms Location Zone"
}
{
  "status": "FAIL",
  "message": "Unauthorized / Wrong api key"
}
{
  "status": "FAIL",
  "message": "Unexpected error}
{
  "location_zn": {
    "name": "ankit,",
    "sequence": "1799,",
    "for_putaway": "true,",
    "site": "Taj Vivanta Bengaluru",
    "loc_type": "Town",
    "is_receiving": true,
    "is_putaway": true,
    "is_packing": "true,",
    "status": "ok,",
    "is_shipping": "true,",
    "product_group": "Flipkart",
    "storage_type": "Large",
    "dimensions": {
      "length": 55,
      "breadth": 66,
      "height": 22,
      "um": "cm"
    }
  }
}
PreviousStorage TypeNextLocation

Last updated 3 years ago

Was this helpful?