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

# Create Note

## `POST` a note

`POST` `/user-api/v1/notes`

### Headers

| **Header**          | **Value**           |
| ------------------- | ------------------- |
| `Content-Type`      | `application/json`  |
| `x-rolodex-api-key` | `f1e2d3c4b5a697...` |

### Required Fields

<ParamField path="body" type="string">
  Note content (minimum 1 character)
</ParamField>

### Request

```json theme={null}
{
  "body": "Discussed product roadmap and potential partnership opportunities",
  "contacts": ["contact_123", "contact_456"]
}
```

### Response

```json theme={null}
{
  "data": {
    "id": "note_99999",
    "body": "Discussed product roadmap and potential partnership opportunities",
    "created_at": "2025-01-15T10:30:00Z",
    "updated_at": "2025-01-15T10:30:00Z",
    "contacts": [
      {
        "id": "contact_123",
        "full_name": "John Doe",
        "image_url": "https://example.com/avatar1.jpg"
      },
      {
        "id": "contact_456",
        "full_name": "Jane Smith",
        "image_url": "https://example.com/avatar2.jpg"
      }
    ]
  }
}
```
