Veto Candidate¶
If ‘Veto Candidates’ feature available on company level and enabled on project level candidates can be vetoed by evaluators. That means candidate’s evaluation status is immediately changed to ‘completed’ and candidate is excluded from evaluation process (this candidate appears in project results).
Attributes
| Name | Type | Description |
|---|---|---|
| resource_uri | reference | read only |
| comment | string | veto explanation comment, min length = 15, max length = 600 |
| candidate | reference | read only |
| evaluator | reference | read only |
List¶
/companies/{{companyId}}/projects/{{projectId}}/candidates/{{candidateId}}/vetos/
Methods¶
- GET
- POST
Example response¶
{
"meta": {
"total_count": 1,
"previous": null,
"next": null
},
"objects": [
{
"resource_uri": "https://interview-suite.com/api/v3/companies/1/projects/17/candidates/19/vetos/1/",
"comment": "some thoughts regarding candidate",
"candidate": "https://interview-suite.com/api/v3/companies/1/projects/17/candidates/19/",
"evaluator": "https://interview-suite.com/api/v3/companies/1/customers/1/"
}
]
}
Object¶
/companies/{{companyId}}/projects/{{projectId}}/candidates/{{candidateId}}/vetos/{{vetoId}}
Methods¶
- GET
Example response¶
{
"resource_uri": "https://interview-suite.com/api/v3/companies/1/projects/17/candidates/19/vetos/1/",
"comment": "some thoughts regarding candidate",
"candidate": "https://interview-suite.com/api/v3/companies/1/projects/17/candidates/19/",
"evaluator": "https://interview-suite.com/api/v3/companies/1/customers/1/"
}