v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Performance > ReviewEvaluation

Reads a single Review evaluation

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.

get/api/2026-07-01/resources/performance/review_evaluations/{id}

Path parameters

idstring required

Filter by evaluation IDs

Response

OK

idstring required

Evaluation ID

performance_review_process_idstring

Review process ID

target_access_idstring

Participant access ID

reviewer_access_idstring

Reviewer access ID

evaluation_type'self' | 'manager' | 'direct_reports' | 'peers' required

Evaluation type

publishedboolean required

Whether the evaluation is published

status'pending' | 'published' required

Evaluation status

review_process_target_idstring required
published_atstring

Date when the evaluation was published

Example response

{
  "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"
}