Project’s Results¶
Read-only resource with aggregated data of project results. Each object of such resource represents a candidate who has already finished their interview and their evaluation was started by some of project evaluators.
Attributes
| Name | Type | Description |
|---|---|---|
| resource_uri | reference | read only |
| candidate | reference | |
| overall_rating | float | |
| question_results | list | Aggregated ratings per question |
| question_results[n] | object | |
| question_results[n].question | reference | |
| question_results[n].average_rating | float | |
| criteria_results | list | Aggregated ratings per criterion |
| criteria_results[n] | object | |
| criteria_results[n].criterion | reference | |
| criteria_results[n].average_rating | float | |
| ratings | list | Ratings list for such candidate |
| ratings[n] | object | Individual rating object |
| ratings[n].resource_uri | reference | |
| ratings[n].question | reference | |
| ratings[n].criterion | reference | |
| ratings[n].answer | reference | |
| ratings[n].evaluator_profile | reference | |
| ratings[n].value | float | |
| ratings[n].ignore | bool | |
| notes | list | Notes list for such candidate |
| notes[n] | object | Individual note object |
| notes[n].resource_uri | reference | |
| notes[n].text | string | |
| notes[n].shared | bool | |
| notes[n].answer | reference | |
| notes[n].evaluator_profile | reference | |
| vetos | list | Vetos list for such candidate |
| vetos[n] | object | Individual veto object |
| vetos[n].resource_uri | reference | |
| vetos[n].comment | string | |
| vetos[n].candidate | reference | |
| vetos[n].evaluator | reference |
List¶
/companies/{{companyId}}/projects/{{projectId}}/results/
Methods¶
- GET
Example response¶
{"meta":{
"total_count":6,
"previous":null,
"next":null
},
"objects": [
{"resource_uri": "https://host/api/v3/companies/1/projects/15/results/479/",
"candidate": "https://host/api/v3/companies/1/projects/15/candidate/479/",
"overall_rating": 4.5,
"question_results": [
{"question": "https://host/api/v3/companies/1/projects/15/questions/123/", "average_rating": 4.5},
{"question": "https://host/api/v3/companies/1/projects/15/questions/234/", "average_rating": 4.0}
],
"criteria_results": [
{"criterion": "https://host/api/v3/companies/1/projects/15/criteria/123/", "average_rating": 4.5},
{"criterion": "https://host/api/v3/companies/1/projects/15/criteria/234/", "average_rating": 4.0}
],
"ratings": [
{"resource_uri": "https://host/api/v3/companies/1/projects/15/ratings/1/",
"question": "https://host/api/v3/companies/1/projects/15/questions/123/",
"criterion": "https://host/api/v3/companies/1/projects/15/criteria/123/",
"answer": "https://host/api/v3/companies/1/projects/15/answervideos/1/",
"evaluator_profile": "https://host/api/v3/companies/1/customers/1/",
"value": 4,
"maximum": 5,
"ignore": false
}
],
"notes": [
{"resource_uri": "https://host/api/v3/companies/1/projects/15/answervideos/1/notes/5",
"text": "Some useful note",
"shared" true,
"answer": "https://host/api/v3/companies/1/projects/15/answervideos/1/",
"evaluator_profile": "https://host/api/v3/companies/1/customers/1/"
},
{"resource_uri": "https://host/api/v3/companies/1/projects/15/answervideos/1/notes/7",
"text": "Another note",
"shared" false,
"answer": "https://host/api/v3/companies/1/projects/15/answervideos/1/",
"evaluator_profile": "https://host/api/v3/companies/1/customers/1/"
}
],
"vetos": [
{"resource_uri": "https://host/api/v3/companies/1/projects/15/candidates/479/vetos/5/",
"comment": "Explanatory comment regarding candidate",
"candidate": "https://host/api/v3/companies/1/projects/15/candidates/479/",
"evaluator": "https://host/api/v3/companies/1/customers/1/"
}
]
}
]
}
Object¶
/companies/{{companyId}}/projects/{{projectId}}/results/{{candidateId}}
Methods¶
- GET
Example response¶
{"resource_uri": "https://host/api/v3/companies/1/projects/15/results/479/",
"candidate": "https://host/api/v3/companies/1/projects/15/candidate/479/",
"overall_rating": 4.5,
"question_results": [
{"question": "https://host/api/v3/companies/1/projects/15/questions/123/", "average_rating": 4.5},
{"question": "https://host/api/v3/companies/1/projects/15/questions/234/", "average_rating": 4.0}
],
"criteria_results": [
{"criterion": "https://host/api/v3/companies/1/projects/15/criteria/123/", "average_rating": 4.5},
{"criterion": "https://host/api/v3/companies/1/projects/15/criteria/234/", "average_rating": 4.0}
],
"ratings": [
{"resource_uri": "https://host/api/v3/companies/1/projects/15/ratings/1/",
"question": "https://host/api/v3/companies/1/projects/15/questions/123/",
"criterion": "https://host/api/v3/companies/1/projects/15/criteria/123/",
"answer": "https://host/api/v3/companies/1/projects/15/answervideos/1/",
"evaluator_profile": "https://host/api/v3/companies/1/customers/1/",
"value": 4,
"maximum": 5,
"ignore": false
}
],
"notes": [
{"resource_uri": "https://host/api/v3/companies/1/projects/15/answervideos/1/notes/5",
"text": "Some useful note",
"shared" true,
"answer": "https://host/api/v3/companies/1/projects/15/answervideos/1/",
"evaluator_profile": "https://host/api/v3/companies/1/customers/1/"
}
]
}