# POST /product-components

**Resource:** [COMPONENTS](./components.md)  
**MCP tool:** `create_product_component`  
**Scopes:** `products:write`  
**Write operation:** yes

Add a template component (a BOM part/bundle) to a product. Product-level, not tied to any opportunity. Requires product_id.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `product_id` | body | string | yes |  |
| `type` | body | string | no |  |
| `label` | body | string | no |  |
| `status` | body | string | no |  |
| `attributes` | body | object | no |  |
| `sort_order` | body | number | no |  |
| `external_ref` | body | string | no |  |
| `source` | body | string | no |  |

## Request example

```bash
curl -X POST   "https://api.trustpager.com/functions/v1/api/v1/product-components"   -H "Authorization: Bearer YOUR_API_KEY"   -H "Content-Type: application/json"   -d '{"product_id":"...","type":"...","label":"..."}'
```

---
Base URL: `https://api.trustpager.com/functions/v1/api/v1` — Auth: `Authorization: Bearer YOUR_API_KEY`