curl --request GET \
--url 'https://api.stateset.com/api/v1/boms/{id}/components' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"components": [
{
"bom_id": "string",
"component_sku": null,
"id": "string",
"name": "string",
"notes": null,
"position": null,
"quantity": "string",
"unit_of_measure": "string"
}
],
"total": 1
}
List components
List components
GET
/
api
/
v1
/
boms
/
{id}
/
components
curl --request GET \
--url 'https://api.stateset.com/api/v1/boms/{id}/components' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"components": [
{
"bom_id": "string",
"component_sku": null,
"id": "string",
"name": "string",
"notes": null,
"position": null,
"quantity": "string",
"unit_of_measure": "string"
}
],
"total": 1
}
Path parameters
string
required
BOM ID
Responses
BomComponentListResponse
curl --request GET \
--url 'https://api.stateset.com/api/v1/boms/{id}/components' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"components": [
{
"bom_id": "string",
"component_sku": null,
"id": "string",
"name": "string",
"notes": null,
"position": null,
"quantity": "string",
"unit_of_measure": "string"
}
],
"total": 1
}
⌘I