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

Storage Type

Create Storage Types

POST /storagetypes

Use this api to create different storage cabinets to store various kinds of inventory effectively. We need to pass an api key. It has information of the name and description of the storage cabinet to be created.

Headers

Name
Type
Description

API_KEY

string

Contact Blowhorn team for API Key

{
  "status": "PASS",
  "message": {
    "name": "anu",
    "description": "Its about storage type"
  }
}
{
  "status": "FAIL",
  "message": "`value` for `name` is mandatory for Wms Storage Type"
}
{
  "status": "FAIL",
  "message": "Unauthorized / Wrong api key"
}
{
  "status": "FAIL",
  "message": "Unexpected error"
}
{
  "location_type": {
    "name": "Play House",
    "description": "Its about storage type"
  }
}
PreviousLocation TypeNextLocation Zone

Last updated 3 years ago

Was this helpful?