๐ŸŽ‰ New Welcome to reservie โ€” V2 is now live and available for use. Get started โ†’

Customers โ€” Notes

Updated Feb 24, 2026 1 min read

Retrieve notes attached to a customer record.

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
}
FieldTypeDescription
idstringNote ID (prefixed with note_)
typestringAlways "note"
contentstringNote text
created_bystringName of the user who created the note
created_atstringCreation timestamp
updated_atstringLast update timestamp