# POST /stakeholder-types

**Resource:** [STAKEHOLDERS](./stakeholders.md)  
**MCP tool:** `create_stakeholder_type`  
**Scopes:** `contacts:write`  
**Write operation:** yes

Create a stakeholder type. Requires name; optional capability flags default to off.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `name` | body | string | yes |  |
| `color` | body | string | no | Hex colour for the type chip, e.g. #6366f1. |
| `portal_eligible` | body | boolean | no | People in this type can be given a scoped portal login. |
| `commission_eligible` | body | boolean | no | People in this type earn trackable commissions/payouts. |
| `assignable_to_work_orders` | body | boolean | no | People in this type can be assigned jobs/work orders. |
| `sort_order` | body | number | no |  |
| `require_approval` | body | boolean | no | Optional. Set true to route this write into the approval queue for human review instead of executing it immediately (returns 202 + an approval_id). Works even when your key/token has permission to execute directly. |

## Request example

```bash
curl -X POST   "https://api.trustpager.com/functions/v1/api/v1/stakeholder-types"   -H "Authorization: Bearer YOUR_API_KEY"
```

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