List evaluation results
GET /api/v2/evaluations Select code sample Fetch cURL
const url = 'https://localhost:10001/api/v2/evaluations';const options = {method: 'GET', headers: {Authorization: '
'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}
curl --request GET \ --url https://localhost:10001/api/v2/evaluations \ --header 'Authorization:
'
Retrieve a paginated list of evaluation results with optional filters
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” applicationId integerFilter by application ID
indicatorId stringFilter by indicator UUID
projectId integerFilter by project ID
projectPolicyId integerFilter by project policy ID
projectPolicyControlId integerFilter by project policy control ID
result stringFilter by result status (pass, fail, error, awaiting_evaluation)
since stringFilter evaluations after this timestamp (ISO 8601)
until stringFilter evaluations before this timestamp (ISO 8601)
limit integerNumber of results to return (default: 50, max: 200)
offset integerNumber of results to skip (default: 0)
Responses
Section titled “ Responses ”200
Section titled “200 ”Paginated evaluation results
Media type application/json object limit integer offset integer results Array