List Customer Notes
| Endpoint | Method |
|---|---|
/api/admin/customers/{customerId}/notes | GET |
The notes that appear on the customer's view screen, returned newest-first.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
customerId | integer | yes | The customer whose notes to list. Unknown customer → 404. |
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | Page number. |
per_page | integer | — | Items per page. |
Response Fields
Each row in data:
| Field | Type | Description |
|---|---|---|
id | integer | Note ID. |
note | string | The note text. |
customerId | integer | The customer this note belongs to. |
customerNotified | boolean | Whether the customer was emailed when the note was added. |
createdAt | string | When the note was created. |
The meta object carries currentPage, perPage, lastPage, total, from, and to.
TIP
For how the notes log works (append-only, customer-notify), see the Notes overview.
All admin endpoints require an admin Bearer token — see Authentication.

