> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove a component from a BOM

> Remove a component from a BOM

### Path parameters

<ParamField path="id" type="string (uuid)" required>
  BOM ID
</ParamField>

<ParamField path="component_id" type="string (uuid)" required>
  Component ID
</ParamField>

### Responses

<ResponseField name="204" type="object">
  Component removed
</ResponseField>

<ResponseField name="404" type="ErrorResponse">
  BOM or component not found
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request DELETE \
    --url 'https://api.stateset.com/api/v1/manufacturing/boms/{id}/components/{component_id}' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>
