Criterion Evaluations
A Criterion Evaluation that represents a determination of a candidate on whether they meet a certain criterion against a tag, job, etc.
🛠️ This page is a work in progress. Please refer to the in-depth guides and API reference in the meantime.
Relationships:
Nomination to Criterion Evaluation is 1-Many
Candidate to Criterion Evaluation is 1-Many
Criterion Evaluation Result Type:
Successful criterion evaluations will be returned in this format.
Get the criterion evaluations for a nomination
GET
https://endorsed.ai/api/v1/nominations/{id}/criterion_evaluations/
Gets all the evaluations for each criterion for a nomination based upon the nomination's job's criteria
Path Parameters
id*
string
UUID id of the nomination
Headers
Authorization*
string
Authorization header containing the Bearer Access Token from the /auth/tokens
endpoint. Example: Bearer <ACCESS_TOKEN>
Examples:
Get the criterion evaluations for a candidate
GET
https://endorsed.ai/api/v1/candidates/{id}/criterion_evaluations/
Gets all the evaluations for each criterion for a candidate based upon the organization's criteria
Path Parameters
id*
string
UUID id of the candidate
Query Parameters
criterion_type*
string
Type of criterion to filter criterion evaluation results upon. Currently only supports tag
and org_wide
. job
specific criterion evaluations should be fetched from `/nominations/[id]/criterion_evaluations.
Headers
Authorization*
string
Authorization header containing the Bearer Access Token from the /auth/tokens
endpoint. Example: Bearer <ACCESS_TOKEN>
Examples:
Last updated