Getting Started
Endpoints
- Applications
- Candidates
- Jobs
- Feedback
- Interviews
- Users
- Files
- Settings
- Webhooks
Webhooks
- Overview
- Verify Webhook Signatures
- Webhook retries
- Events
- job.created
- job.updated
- job.status.updated
- job.deleted
- application.created
- application.stage.updated
- application.deleted
- candidate.updated
- candidate.note.created
- candidate.note.updated
- candidate.note.deleted
- candidate.tag.added
- candidate.tag.removed
- feedback.requested
- feedback.submitted
- feedback.updated
- interview.created
- interview.updated
- interview.cancelled
Events
feedback.updated
Occurs when a feedback form is updated
The schema is of type object
.
Was this page helpful?
{
"id": "<string>",
"version": 123,
"type": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"data": {
"object": {
"id": "<string>",
"application_id": "<string>",
"form_id": "<string>",
"candidate": {
"id": "<string>",
"name": "<string>"
},
"name": "<string>",
"creator": {
"id": "<string>",
"name": "<string>"
},
"reviewer": {
"id": "<string>",
"name": "<string>"
},
"status": "pending",
"date_created": "2023-11-07T05:31:56Z",
"date_complete": "2023-11-07T05:31:56Z",
"questions": [
{
"id": "<string>",
"type": "textbox",
"question": "<string>",
"description": "<string>",
"required": true,
"restricted": true,
"display_order": 123,
"options": [
{
"id": "<string>",
"label": "<string>",
"description": "<string>"
}
],
"answer": {
"question_id": "<string>",
"text": "<string>",
"ratings": [
{
"option_id": "<string>",
"rating": 123
}
],
"selected_options": [
"<string>"
],
"selected_option": "<string>"
}
}
]
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.