UMG-UK
  1. Product
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
      POST
    • Get Product Information
      GET
    • List SKUs
      GET
    • Create SKU
      POST
    • Get SKU Details
      GET
    • Update SKU Details
      PATCH
    • Update SKU Details
      PUT
  • 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
    • List Inventory stats grouped by SKU
    • List Inventory stats grouped by Lot
    • List Inventory stats grouped by SKU and Building
    • List Inventory stats grouped by Lot and Building
    • List Inventory Serial Numbers
  • 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. Product

List SKUs

GET
/business_units/{businessUnitId}/skus
Product
Fetch, filter, sort, page the product catalog for the business unit.

Request

Path Params
businessUnitId
string 
required
Query Params
sortField
enum<string> 
optional
Field to sort by
Allowed values:
skuIdupcnamedescription
Default:
skuId
sortDirection
enum<string> 
optional
Direction in which to sort the sortField
Allowed values:
ASCDESC
Default:
ASC
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
Filter to orders where skuId begins with this string.
upc
string 
optional
Filter to orders where upc begins with this string.
name
string 
optional
Filter to orders where name begins with this string.
description
string 
optional
Filter to orders where description begins with this string.
active
boolean 
optional
If present, filter results by active or inactive status. Otherwise, return both.

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//skus'

Responses

🟢200List of SKUs returned succesfully. If there are no results, the data array will be empty. All SKU attributes are returned for each item in the list.
application/json
Body
data
array[object (SkuSummary) {5}] 
required
skuId
string 
optional
<= 30 characters
name
string 
optional
<= 255 characters
description
string 
optional
upc
string 
optional
<= 25 characters
active
boolean 
optional
Example
{
    "data": [
        {
            "skuId": "string",
            "name": "string",
            "description": "string",
            "upc": "string",
            "active": true
        }
    ]
}
🟠404Business Unit not found
🔴500Internal Server Error
Modified at 2024-07-02 10:16:06
Previous
Get Product Information
Next
Create SKU
Built with