The BOM Update Tool object
Attributes
Unique identifier for the object.
ISO 8601 timestamp of when the object was created.
ISO 8601 timestamp of when the object was last updated.
{
"id": "b-o-m-update-tool_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"current_bom": "current_bom_example",
"new_bom": "new_bom_example"
} /api/manufacturing/b-o-m-update-tool/{id} Retrieve a bom update tool
Retrieves the details of an existing bom update tool. Supply the unique bom update tool ID that was returned from a previous request.
Path parameters
The identifier of the bom update tool to retrieve.
Returns
Returns the bom update tool object if a valid identifier was provided.
curl https://api.overplane.dev/api/manufacturing/b-o-m-update-tool/b-o-m-update-tool_abc123 \
-H "Authorization: Bearer sk_test_..." {
"id": "b-o-m-update-tool_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"current_bom": "current_bom_example",
"new_bom": "new_bom_example"
} /api/manufacturing/b-o-m-update-tool List all bom update tools
Returns a list of bom update tools. The results are sorted by creation date, with the most recently created appearing first.
Query parameters
Maximum number of objects to return. Default: 20.
Number of objects to skip for pagination. Default: 0.
Returns
A paginated list of bom update tool objects.
curl https://api.overplane.dev/api/manufacturing/b-o-m-update-tool \
-H "Authorization: Bearer sk_test_..." {
"data": [
{
"id": "b-o-m-update-tool_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"current_bom": "current_bom_example",
"new_bom": "new_bom_example"
}
],
"has_more": false,
"total": 1
} /api/manufacturing/b-o-m-update-tool Create a bom update tool
Creates a new bom update tool object.
Body parameters
Returns
Returns the newly created bom update tool object if the call succeeded.
curl https://api.overplane.dev/api/manufacturing/b-o-m-update-tool \
-H "Authorization: Bearer sk_test_..." \
-X POST \
-H "Content-Type: application/json" \
-d '{"current_bom":"current_bom_example","new_bom":"new_bom_example"}' {
"id": "b-o-m-update-tool_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"current_bom": "current_bom_example",
"new_bom": "new_bom_example"
} /api/manufacturing/b-o-m-update-tool/{id} Update a bom update tool
Updates the specified bom update tool by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
Path parameters
The identifier of the bom update tool to update.
Body parameters
Returns
Returns the updated bom update tool object.
curl https://api.overplane.dev/api/manufacturing/b-o-m-update-tool/b-o-m-update-tool_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X PATCH \
-H "Content-Type: application/json" \
-d '{"current_bom":"current_bom_example","new_bom":"new_bom_example"}' {
"id": "b-o-m-update-tool_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"current_bom": "current_bom_example",
"new_bom": "new_bom_example"
} /api/manufacturing/b-o-m-update-tool/{id} Delete a bom update tool
Permanently deletes a bom update tool. This cannot be undone.
Path parameters
The identifier of the bom update tool to delete.
Returns
Returns a confirmation that the bom update tool has been deleted.
curl https://api.overplane.dev/api/manufacturing/b-o-m-update-tool/b-o-m-update-tool_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X DELETE {
"id": "b-o-m-update-tool_abc123",
"deleted": true
}