Project Answer Videos’ Notes¶
Description TBD
Attributes
| Name | Type | Description |
|---|---|---|
| resource_uri | reference | read only |
| text | string | note text, max length = 600 |
| shared | bool | |
| answer | reference | |
| evaluator_profile | reference | read only |
List¶
/companies/{{companyId}}/projects/{{projectId}}/questions/{{questionId}}/answervideos/{{answerVideoId}}/notes/
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/questions/28/answervideos/19/notes/1/",
"text": "some notes regarding candidate's answer",
"shared": false,
"answer": "https://interview-suite.com/api/v3/companies/1/projects/17/questions/28/answervideos/19/",
"evaluator_profile": "https://interview-suite.com/api/v3/companies/1/customers/1/"
}
]
}
Object¶
/companies/{{companyId}}/projects/{{projectId}}/questions/{{questionId}}/answervideos/{{answerVideoId}}/notes/{{noteId}}
Methods¶
- GET
- PATCH
- DELETE
Example response¶
{
"resource_uri": "https://interview-suite.com/api/v3/companies/1/projects/17/questions/28/answervideos/19/notes/1/",
"text": "some notes regarding candidate's answer",
"shared": false,
"answer": "https://interview-suite.com/api/v3/companies/1/projects/17/questions/28/answervideos/19/",
"evaluator_profile": "https://interview-suite.com/api/v3/companies/1/customers/1/"
}