Inventory Transaction

Every operation of inventory results into a merge / split of the same (receiving, shipping, etc.) causing an inventory transaction event that can be consumed by downstream applications

Fetch Inventories

GET /wms/inventory-transaction

This API returns single or set of inventory transactions in the system based on the filter criteria provided. This will have log of all the transactions done on an inventory with all the details. Please refer to the sample response below for fields.

Query Parameters

NameTypeDescription

sku_id

String

Blowhorn assigned/supplied integer unique id for the SKU like 12345

sku_name

String

Partial or full text matching name of the SKU like 'Wires'

client_id

String

Warehouse Client id to which the item belongs.

client_name

String

Warehouse Client name like 'ABC Corp' either full or partial for search

site_id

String

Warehouse site identifier which is numeric

site_name

String

Full or partial Warehouse site name for search.

created_date_start

String

Date in the form of YYYY-MM-DD which indicates start filter which is inclusive to filter the result on created_date field date of the inventory.

created_date_end

String

Date in the form of YYYY-MM-DD which indicates end filter which is inclusive to filter the result on created_date of the inventory.

tag

String

Full or partial tag value to filter the inventory result. If passed full value like `TAG-1Y28W7L` then result will be only one inventory returned matching to the tag.

Headers

NameTypeDescription

API_KEY*

string

Contact Blowhorn team for API Key

{
  "status": "FAIL",
  "message": "Unauthorized"
}

Last updated