curl --request PUT \
--url 'https://prod-api.stateset.cloud.stateset.app/api/v1/manufacturing/boms/{id}' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"description": "Two-person tent, green — replacement for damaged pole set.",
"name": "Ada Lovelace",
"revision": "string",
"status": "pending"
}'
{
"data": null,
"errors": [
"string"
],
"message": "Two-person tent, green — replacement for damaged pole set.",
"meta": {
"request_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"timestamp": "2026-08-31T14:22:05Z"
},
"success": true
}
Update a BOM
Update a BOM
PUT
/
api
/
v1
/
manufacturing
/
boms
/
{id}
curl --request PUT \
--url 'https://prod-api.stateset.cloud.stateset.app/api/v1/manufacturing/boms/{id}' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"description": "Two-person tent, green — replacement for damaged pole set.",
"name": "Ada Lovelace",
"revision": "string",
"status": "pending"
}'
{
"data": null,
"errors": [
"string"
],
"message": "Two-person tent, green — replacement for damaged pole set.",
"meta": {
"request_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"timestamp": "2026-08-31T14:22:05Z"
},
"success": true
}
Path parameters
string (uuid)
required
BOM ID
Request body
UpdateBOMRequest
string,null
string,null
string,null
string,null
Response
ApiResponse_Value
any
array,null
string,null
boolean
required
Status codes
| Code | Meaning |
|---|---|
200 | BOM updated |
400 | Invalid request |
404 | BOM not found |
curl --request PUT \
--url 'https://prod-api.stateset.cloud.stateset.app/api/v1/manufacturing/boms/{id}' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"description": "Two-person tent, green — replacement for damaged pole set.",
"name": "Ada Lovelace",
"revision": "string",
"status": "pending"
}'
{
"data": null,
"errors": [
"string"
],
"message": "Two-person tent, green — replacement for damaged pole set.",
"meta": {
"request_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"timestamp": "2026-08-31T14:22:05Z"
},
"success": true
}
Last modified on August 31, 2026