v1
latestOpenAPI 3.1.02026-07-26549156879.0 KBReads all Review evaluations
Retrieves the pending and published review evaluations. The evaluations are created based on the participants and the review types when the review process is started.
For example, if the defined review types are "self-review" and "manager review," two evaluations will be created for each participant when the review process starts. One will be for the self-review, where the participant is both the target and the reviewer. The other will be for the manager review, where the participant is the target, and the manager is the reviewer.
Query parameters
Filter by evaluation IDs
Filter by evaluation IDs
[ "1", "2", "3" ]
Filter by review process IDs
Filter by review process IDs
[ "1", "2", "3" ]
Only published or unpublished evaluations
Only published or unpublished evaluations
Filter by reviewer access IDs
Filter by reviewer access IDs
[ "1", "2", "3" ]
Filter by reviewer strategies
Filter by reviewer strategies
[ "manager", "peer" ]
Filter by participant access IDs
Filter by participant access IDs
[ "1", "2", "3" ]
Filter by review process target IDs. Composite key format: review_process_id-target_access_id
Filter by review process target IDs. Composite key format: review_process_id-target_access_id
[ "1-1", "1-2", "1-3" ]
Only evaluations where the participant is managed by the specified employee ID
{
"manager_employee_id": 1,
"only_direct_reports": false
}Exclude evaluations by IDs
Exclude evaluations by IDs
[ "1", "2", "3" ]
Response
OK
Example response
{
"data": [
{
"id": "1",
"performance_review_process_id": "1",
"target_access_id": "1",
"reviewer_access_id": "1",
"evaluation_type": "manager",
"published": true,
"status": "published",
"published_at": "2024-01-01T00:00:00Z"
}
]
}