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
  • Fetch details of Client
  • Create a Client

Was this helpful?

  1. API REFERENCE
  2. WMS Inbound

Clients

Client is the inventory owner for all the stock in the warehouse

Fetch details of Client

GET /wms/client

Use this API to get the details of the Client(s). Below mentioned filters can be used to filter to get a single or set of client objects. If multi filters are used then all will be used for matching the result.

Query Parameters

Name
Type
Description

id

String

Client id returned by the Blowhorn at the time of client creation.

description

String

Full or partial description text of the client

name

String

Full or partial name of the client.

Headers

Name
Type
Description

API_KEY*

string

API key obtained by the Customer/Partner

{
    "count": 1,
    "previous": null,
    "next": 0,
    "result": [
        {
            "id": 4,
            "created_date": "2021-07-30T17:37:55.864539+05:30",
            "modified_date": "2021-07-30T17:37:55.865651+05:30",
            "name": "Default Client",
            "description": "Default Client",
            "created_by": 108434,
            "modified_by": 108434,
            "customer": 40082
        }
    ]
}
{
  "status": "FAIL",
  "message": "Unauthorized"
}
{
  "status": "FAIL",
  "message": "Unexpected error"
}
{
    "count": 0,
    "previous": null,
    "next": 0,
    "result": []
}

Create a Client

POST /wms/client

Use this API to create client on the blowhorn systems.

Headers

Name
Type
Description

API_KEY*

String

API key obtained by the Customer/Partner

Request Body

Name
Type
Description

name*

String

Name of the client

description

String

Description of the client

{
    "status": "FAIL",
    "message": "Client name should be unique."
}
{
    "status": "PASS",
    "message": {
        "id": 221,
        "name": "Client account default",
        "description": "Deault client account for abc corp."
    }
}
{
  "status": "FAIL",
  "message": "Unauthorized"
}
{
  "status": "FAIL",
  "message": "Unexpected error"
}
{
    "name": "Default Client for ABC Corp 01",
    "description": "Default Client for ABC Corp 01"
}
{
    "name": "Default Client for ABC Corp 01"
}
PreviousWMS InboundNextSuppliers

Last updated 3 years ago

Was this helpful?