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
feedback.submitted
Occurs when a feedback form is completed
The id of the question. Format qustn_1a2b3c
The type of field of the question.
textbox
, text_area
, radio
, checkbox
, dropdown
, upload
, header
, scorecard
The text of the question.
The description of the question if the type
is header
A bool to indicate if this question is required.
A bool to indicate if the answers to this question require the restricted
permission to view.
The id of the question. Format qustn_1a2b3c
The text answer given. Only applicable for textbox
and text_area
type questions
The answers given for a scorecard. Only applicable for scorecard
type questions
One or more answers given for a multiple choice question. Only applicable for checkbox
type questions
The single selected answer for a radio/dropdown question. Only applicable for radio
and dropdown
type questions
The id of the feedback. Format fdbk_1a2b3c
The application id this feedback form is for. Format app_1a2b3c
The id of the form that the feedback is connected to. Format form_1a2b3c
The name of the form.
The current status of the feedback indicating if it has been completed or not.
pending
, complete
The date that the feedback was submitted or requested.
The date that the feedback was sumitted
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>"
}
}
]
}
}
}