Get SKU production steps
GET/skus/:skuId/steps
Returns the ordered production steps for a SKU. Each step includes a name, description, the materials consumed during that step, and a checklist of quality or safety items an operator must verify. Use this to build production run sheets or digital work instructions.
Request
Response
- 200
- 401
- 404
Production steps
Unauthorized — missing or invalid API key
Resource not found
Response
{
"skuId": null,
"skuName": null,
"steps": [
{
"stepNumber": 1,
"name": "Blend fruit base",
"description": null,
"materials": [
{
"itemId": null,
"itemName": null,
"quantity": null,
"unit": null
}
],
"checklist": [
"Verify tahini consistency is smooth",
"Confirm garlic roast level"
]
}
]
}