# POST /service-requests/:request_id/notes

**Resource:** [Service Requests](./service-requests.md)  
**MCP tool:** `add_service_request_note`  
**Scopes:** `service-requests:write`  
**Write operation:** yes

Add a note to a service request.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `request_id` | path | string | yes |  |
| `content` | body | string | yes |  |

## Request example

```bash
curl -X POST   "https://api.trustpager.com/functions/v1/api/v1/service-requests/:request_id/notes"   -H "Authorization: Bearer YOUR_API_KEY"   -H "Content-Type: application/json"   -d '{"content":"..."}'
```

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