List notes
GET /customer/{id}/notes
Scope: notes:read
Query parameters: page (default 0), pageSize (default 30, max 100)
Response:
{
"data": [
{
"id": "note_301",
"type": "note",
"content": "Customer requested schedule change for next month.",
"created_by": "Admin User",
"created_at": "2025-02-20T16:30:00",
"updated_at": "2025-02-20T16:30:00"
}
],
"total": 4,
"page": 0,
"pageSize": 30
}
| Field | Type | Description |
|---|---|---|
id | string | Note ID (prefixed with note_) |
type | string | Always "note" |
content | string | Note text |
created_by | string | Name of the user who created the note |
created_at | string | Creation timestamp |
updated_at | string | Last update timestamp |
