Skip to main content

Get customer SKUs

GET 

/customers/:customerId/skus

Returns the SKUs linked to this customer — the products they have ordered or are contracted to buy. Each entry includes the SKU name, version, status, batch size, and item type. Use this to see a customer's product portfolio at a glance.

Request

Response

Linked SKUs

Response
{
"customerId": null,
"customerName": null,
"skus": [
{
"id": "1042",
"name": "Roasted Garlic Hummus",
"version": 2,
"status": "active",
"description": null,
"batchSize": 500,
"batchUnit": "lbs",
"itemType": "finished_good"
}
]
}