Add Customer Note
Appends an internal note to a customer's record. The response is the created note.
| Endpoint | Method |
|---|---|
/api/admin/customers/{customerId}/notes | POST |
Response Fields
| Field | Type | Description |
|---|---|---|
id | integer | Note ID. |
customerId | integer | The customer the note belongs to. |
note | string | The note text. |
customerNotified | boolean | Whether the customer was emailed this note. |
createdAt | string | When the note was created. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
note | string | yes | Non-empty. Empty → 422. |
customer_notified | boolean | no | When true, fires the customer notification email listener. |
Append-only
Notes are append-only. There is no update/delete endpoint — every note is a separate row for audit.
Permission: customers.customers.edit.
TIP
For how the notes log works, see the Notes overview.

