List context items in the caller’s organization
Returns a paginated page of context items, optionally filtered by context type, verification status, topic, or free-text search. Pagination uses an opaque token returned in nextPageToken — round-trip the string as pageToken on the next request (AIP-158). Tenant isolation is enforced by the org-scoped Postgres schema.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Opaque page token from a previous response's nextPageToken. Omit for the first page. AIP-158.
"eyJjcmVhdGVkQXQiOiIyMDI2LTA1LTAxIiwidWlkIjoiYWJjIn0"
Max items per page. Defaults to 25 (the legacy list-context-items-olap action defaulted to 100; the new clampPageSize helper standardises every modus-api list surface on 25). Clamped to 200. AIP-158.
1 <= x <= 20025
Filter by one or more context types (repeat the query param). Example: ?contextTypes=note&contextTypes=saved_query.
["note", "saved_query"]Filter by verification status (negative / neutral / positive).
["positive"]Case-insensitive substring search over content + description + topics.
"churn"
Filter by topic tag.
["analytics"]Response
Page of context items. Empty when no items match the filter.
Opaque token for the next page; null when this was the last page. Pass as pageToken on the next request. AIP-158. Required-but-nullable — the field is always present on every response.
"eyJjcmVhdGVkQXQiOiIyMDI2LTA1LTAxIiwidWlkIjoiYWJjIn0"
Approximate total count of matching items (when known). Some filter combinations skip this for cost reasons.
142