Getting Started
Endpoints
- Applications
- Candidates
- Jobs
- Feedback
- Interviews
- Users
- Files
- Settings
- Webhooks
Webhooks
Get feedback
Get a paginated list of feedback
curl --request GET \
--url https://api.hirehive.com/v1.0/{company_id}/feedback \
--header 'Authorization: Bearer <token>'
{
"meta": {
"page_size": 123,
"page": 123,
"total_items": 123,
"total_pages": 123,
"has_next_page": true,
"has_previous_page": true
},
"links": {
"first": "<string>",
"last": "<string>",
"next": "<string>",
"previous": "<string>"
},
"items": [
{
"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>"
}
}
]
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Query Parameters
Sortable fields: date_complete
, date_created
.
Filter feedback for a specific application id. Format app_1a2b3c
Filter feedback created by a specific user id. Format usr_1a2b3c
Filter feedback completed by a specific user id. Format usr_1a2b3c
Filter feedback by the form_id. Format form_1a2b3c
Filter feedback by status
pending
, complete
Defaults to 1
Defaults to 30. Min = 1. Max = 100
1 <= x <= 100
Response
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?
curl --request GET \
--url https://api.hirehive.com/v1.0/{company_id}/feedback \
--header 'Authorization: Bearer <token>'
{
"meta": {
"page_size": 123,
"page": 123,
"total_items": 123,
"total_pages": 123,
"has_next_page": true,
"has_previous_page": true
},
"links": {
"first": "<string>",
"last": "<string>",
"next": "<string>",
"previous": "<string>"
},
"items": [
{
"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>"
}
}
]
}
]
}