Search Client Assessment Questions

Returns a paginated list of assessment questions for the specified client.

Supports filtering with PII, sorting, and cursor-based pagination..

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Path Params
string
required

Unique identifier of the client

Body Params

Request payload containing filtering, pagination, and sorting options.

Filtering

Filters must be provided inside the filter object.

Supported fields:

  • frameworks.name — Name of the framework.
  • group_name — Name of the question group.
  • answer — Answer text.

Supported operators (prefix before :):

  • eq — exact match (default if no operator is provided)
  • in — comma-separated list (where applicable)
  • like — pattern match (e.g. %SOC%)

Example:

"filter": {
  "frameworks.name": "eq:ISO 27001",
  "group_name": "eq:Security",
  "answer": "Yes"
}

Example with pattern match:

"frameworks.name": "like:%SOC%"

Example matching any of several framework names (in):

"filter": {
  "frameworks.name": "in:ISO 27001, SOC 2, PCI DSS"
}

Pagination

  • page_size default = 50
  • page_size max = 200

Cursor Pagination

  • cursor must be Base64-encoded.
  • Use next_cursor from the previous response to retrieve the next page.

Sorting

Allowed fields:
code, group_name

Sorting rules:

  • Ascending → code or +code
  • Descending → -code

Query request for assessment questions with filters or rules, fields, pagination, cursor, and sort

filter
object
string

Comma-separated list of fields to include in the response

int32
1 to 200
string
^[A-Za-z0-9+/=]*$

Opaque Base64 cursor from a previous paginated response

string

Sort field with optional + (ascending) or - (descending) prefix. Use code to sort by the question code returned in responses (maps to external_id in the view). Examples: +question_id, -programid, +code, external_id.

rules
array of objects

Optional rules array. Allowed fields only: frameworks.name, group_name, answer. When non-empty, filter is ignored.

rules
Responses

Language
Credentials
Header
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json