Returns the report data for all profiles on your account with pagination and optional filters as query parameters.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The number of profiles to retrieve per paginated request.
The current page of results you are requesting. This indicates how many documents to skip based on the provided limit.
The property to sort profiles by in ascending or descending order
createdAt, name, _id The desired order to sort a provided property by. This is only applied if a sortProp is explicitly set.
ascending, descending A flag that when explicitly set will filter by only completed profiles if true and only in-progress profiles if false. If omitted as a query param it will apply no filtering and simply return all profiles regardless of completion status.
Text search for profiles by name, will return a fuzzy search result.
A comma separated list of profile IDs to only return those profiles specifically.
Whether to retrieve tags associated with the profiles and include them as a "tags" field on each profile document.
A comma separated list of tag IDs to filter profiles only associated with those tags.
A comma separated list of assessment IDs to only return profiles with that specific assessment completed. This will return profiles both completed and in-progress as long as they have completed the specific assessments provided.
A comma separated list of DISC styles to filter profiles by. (E.g. To see all single-letter style reports you could provide the following: discStyles=D,I,S,C)
A valid date-time to filter profiles that started the assessment after or on the provided date. (E.g. Valid date must be provided such as: 2025-10-03T16:08:17.009Z)
A valid date-time to filter profiles that started the assessment before or on the provided date. (E.g. Valid date must be provided such as: 2025-10-03T16:08:17.009Z)
Success
Standard response object for successful single-resource requests in the Profile Behavior API. Contains an HTTP status code, the returned resource data, and a status indicator.