List Notes
Returns a paginated list of notes for a parent entity, newest first by the
note’s display date (displayDate when set, else createdAt) — so
backdated historical notes interleave correctly.
The parent entity is selected by the entityType (lowercase kebab-case) and
entityId query parameters. Pagination is 1-based via page/pageSize.
Pass search to filter to notes whose body contains a substring
(case-insensitive).
Required permission: company.note:read.
Authorizations
API key authentication. Send your raw API key as the Authorization header value with NO scheme prefix — Authorization: YOUR-API-KEY. Do NOT prefix it with Bearer or ApiKey, and do not use an X-API-Key header; those are not accepted.
Path Parameters
Company identifier
Query Parameters
Parent entity type (lowercase kebab-case URL slug), e.g. event, exposure,
policy. Selects the per-entity permission enforced for the request and
scopes the note to its parent entity. PascalCase (Event) is rejected with a
400 — matching the /entities/{type} path convention.
event, exposure, quote, submission, person, organization, policy Parent entity identifier whose notes are being listed
Optional case-insensitive substring filter. When provided, only notes whose body contains this text are returned (matches anywhere in the note).
Page number (1-based, default 1).
x >= 1Number of records per page (default 50).
x >= 1