Endpoints
| Method | Path | Purpose |
|---|---|---|
GET | /notes | List, paginated |
POST | /notes | Create (parent required) |
GET | /notes/:id | Fetch one |
PATCH | /notes/:id | Update body |
DELETE | /notes/:id | Delete |
Fields
| Field | Type | Notes |
|---|---|---|
id | uuid | |
parent_object_type | person | company | deal | Required. Custom objects as parents: v1.1 |
parent_object_id | uuid | Must exist in the same workspace |
body | string | Required, non-empty |
created_at | datetime |
Create
400 parent_not_found. If parent_object_type is anything other than person / company / deal, you get 400 invalid_parent_type.