List a context item’s values
Returns a page of values from the item’s content at the given contentKeyPath — useful for paging through array-valued fields. Pass nextPageToken as pageToken to fetch the next page.
Requires: context:read
Authorizations
A Modus personal access token (modus_<orgUuid>_<prefix>_<secret>) or an OAuth 2.1 access token, sent as Authorization: Bearer <token>.
Path Parameters
UUID of the context item (unused on the underlying reader but kept for URL consistency).
"7a3f9d2c-1111-4000-a000-000000000abc"
Query Parameters
Context type of the item (required for partition-aware reads).
"salesforce_object_field"
Dot-separated JSON path to the array of values inside content. Example: enumValues or sample.values.
"enumValues"
Max values per page. Defaults to 25 (the legacy get-context-values action defaulted to 50; the new clampPageSize helper standardises every modus-api list surface on 25). Clamped to 200.
1 <= x <= 20025
Cursor offset (numeric). Legacy semantics — prefer pageToken for deep pages.
x >= 00
Opaque page token from a previous response's nextPageToken.
Case-insensitive substring search over each value.
"open"
Optional prefix path applied to the data-path filter before slicing values (advanced).
Response
Page of values extracted from the context item at the supplied contentKeyPath. Each entry is opaque JSON whose shape depends on the source item.
Arbitrary JSON value.
Opaque token for the next page, or null if no more pages. Pass back as pageToken.