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
- 200
- 401
- 404
Linked SKUs
Unauthorized — missing or invalid API key
Resource not found
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"
}
]
}