Returns notes on a given entity in descending chronological order (newest first). Supports cursor-based pagination via page_size and page_token. When both referenced_entity_type and referenced_entity_id are set, the request switches to reverse-lookup mode (notes mentioning the given entity), capped at 100 results without pagination.
Documentation Index
Fetch the complete documentation index at: https://docs.cedarai.com/llms.txt
Use this file to discover all available pages before exploring further.
Carrier ID the request is scoped to.
Host entity ID. Required in default mode; ignored in reverse-lookup mode.
Host entity to list notes for. Required in default mode; ignored in
reverse-lookup mode (see referenced_entity_type below).
Page size for cursor pagination. Unset/zero disables paging.
Opaque cursor from a previous response's next_page_token.
Pair with referenced_entity_type. See above.
Reverse-lookup mode: when both referenced_entity_type and
referenced_entity_id are set, returns notes whose references
include this (entity_type, entity_id) pair — i.e. notes that
mentioned this entity via <<ref:...>>. Hard-capped at 100 results,
pagination is disabled in this mode.
Example: to list every note that mentions equipment 54321:
{
"referenced_entity_type": "equipment",
"referenced_entity_id": "54321"
}A successful response.
Opaque cursor for the next page. Empty when there are no more
results, or always empty in reverse-lookup mode (which caps at 100
results without paging). Pass back as page_token on the next
request.
Notes for the requested entity in descending chronological order
(newest first). Each entry has resolved attachments and references
with is_stale populated.