List values extracted from a context item at the given JSON path
Reads a paginated slice of values from inside the item’s content JSON at the supplied contentKeyPath. Useful for paging through array-valued content fields (e.g. enumerated values, sample data) without round-tripping the whole item. Returns the strict AIP-132 / AIP-158 shape { values, nextPageToken } — earlier legacy diagnostic fields (totalCount, limit, offset, hasMore) are not exposed on this surface.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth 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. AIP-158.
1 <= x <= 20025
Cursor offset (numeric). Legacy semantics — prefer pageToken for deep pages.
x >= 00
Opaque page token from a previous response's nextPageToken. AIP-158.
Case-insensitive substring search over each value.
"open"
Optional prefix path applied to the data-path filter before slicing values (advanced).
["salesforce", "Account"]
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. AIP-158.