UMG-UK
  1. Inventory
UMG-UK
  • Outbound Orders
    • Get SalesOrder List
      GET
    • Create a SalesOrder
      POST
    • Get Sales Order Information
      GET
    • Sales Order Acknowledgement
      POST
    • Bulk Upload SalesOrders
      POST
    • Get Job Status of an Async Bulk Sales Order Import
      GET
    • Get a single SalesOrder
      GET
    • Update SalesOrder
      PUT
    • Cancel SalesOrder
      DELETE
    • Get Shipments for a Sales Order
      GET
    • Get B2B Customers For Business Unit
      GET
  • Ship Confirmation
    • Sales Order Ship Confirmation
      POST
  • Business Units
    • Get Buildings associated to a Business Unit
      GET
    • Remove associated Building from a Business Unit
      DELETE
    • Associate a Building to a Business Unit
      PUT
    • Get Business Unit Detail
      GET
    • Update Business Unit
      PUT
    • List Business Units
      GET
    • Create Business Unit
      POST
    • Get Business Unit General Settings
      GET
    • Update Business Unit General Settings
      PUT
    • Update Business Unit Amazon SFP Keys
      PUT
    • Remove Business Unit Amazon SFP Keys
      DELETE
    • Get Business Unit Amazon SFP Keys
      GET
    • List Broker Accounts
      GET
    • Create Broker Account
      POST
    • Delete Broker Account
      DELETE
  • Product
    • Batch Upload SKUs
    • Get Product Information
    • List SKUs
    • Create SKU
    • Get SKU Details
    • Update SKU Details
    • Update SKU Details
  • Inbound
    • List Inbound ASNs
    • Create Inbound ASN
    • Get single Inbound ASN
    • Update single Inbound ASN
    • Cancel single Inbound ASN
    • Get receipt lines for single Inbound ASN
    • Get receipt lines for single Inbound RMA
    • Get single Inbound RMA
    • Update single Inbound RMA
    • Cancel single Inbound RMA
    • List Inbound RMAs
    • Create Inbound RMA
    • Get receipt lines for single Inbound PO
    • Get single Inbound PO
    • Update single Inbound PO
    • Cancel single Inbound PO
    • List Inbound POs
    • Create Inbound PO
  • Inventory
    • List Inventory Transactions
      GET
    • List Inventory stats grouped by SKU
      GET
    • List Inventory stats grouped by Lot
      GET
    • List Inventory stats grouped by SKU and Building
      GET
    • List Inventory stats grouped by Lot and Building
      GET
    • List Inventory Serial Numbers
      GET
  • Inventory Movement
    • Inventory Movement
  • TMS Endpoints
    • Generate TMS Quotes for Sales Order
    • Book TMS Shipment for Sales Order
    • Delete Booked TMS Shipment For Sales Order
    • Update BOL for Order
    • Approve Quote for Order & Drop to WMS
    • Get ERP Token
  1. Inventory

List Inventory stats grouped by SKU and Building

GET
/business_units/{businessUnitId}/inventory/building_sku_stats
Inventory
This returns inventory stats grouped by sku and building. By aggregating at the building level, you can also quantify stats specific to the building such as back orders, due-in, hold, and potential allocation. This will most likely be used to filter results to a specific SKU in order to view one SKU's inventory break down by building.

Request

Path Params
businessUnitId
string 
required
Query Params
sortField
string 
optional
Field to sort by
Default:
timestamp
sortDirection
enum<string> 
optional
Direction in which to sort the sortField
Allowed values:
ASCDESC
Default:
DESC
offset
integer 
optional
This offsets the start of each page by the number specified.
Default:
0
limit
integer 
optional
This is the maximum number of objects that may be returned. A query may return fewer than the value of limit due to filtering.
Default:
100
skuId
string 
optional
buildingId
string 
optional

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/business_units//inventory/building_sku_stats'

Responses

🟢200OK
application/json
Body
data
array[object (InventoryBuildingSkuStats) {8}] 
optional
backOrderQty
number 
optional
dueInQty
number 
optional
holdQty
number 
optional
qoh
number 
optional
atp
number 
optional
sku
object (SkuReference) 
optional
building
object (BuildingReference) 
optional
A Summary View of a Distribution Center/Building/Facility/Location
potentialAllocation
number 
optional
What does this mean vs ATP?
Example
{
    "data": [
        {
            "backOrderQty": 0,
            "dueInQty": 0,
            "holdQty": 0,
            "qoh": 0,
            "atp": 0,
            "sku": {
                "skuId": "string",
                "name": "255",
                "description1": "string",
                "description2": "string"
            },
            "building": {
                "buildingId": "strin",
                "shortName": "string",
                "name": "string"
            },
            "potentialAllocation": 0
        }
    ]
}
Modified at 2024-07-02 10:16:06
Previous
List Inventory stats grouped by Lot
Next
List Inventory stats grouped by Lot and Building
Built with