Application and Feedback forms
Update form
Getting Started
Endpoints
- Applications
- Candidates
- Jobs
- Feedback
- Interviews
- Users
- Files
- Settings
- User Categories
- Job Categories
- Email Templates
- Manage Tags
- Pipeline stages
- Application and Feedback forms
- Webhooks
Webhooks
Application and Feedback forms
Update form
Update form by id
PUT
/
v1.0
/
{company_id}
/
forms
/
application
/
{form_id}
curl --request PUT \
--url https://api.hirehive.com/v1.0/{company_id}/forms/application/{form_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"questions": [
{
"id": "<string>",
"type": "textbox",
"question": "<string>",
"description": "<string>",
"options": [
{
"id": "<string>",
"label": "<string>",
"description": "<string>",
"archived": true,
"tag": {
"id": "<string>",
"name": "<string>"
}
}
],
"required": true,
"restricted": true,
"archived": true,
"display_order": 123
}
],
"name": "<string>",
"type": "application_questions"
}'
{
"data": {
"current_title": "off",
"current_company": "off",
"location": "off",
"phone": "off",
"resume": "off",
"cover_letter": "off"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Minimum length:
1
Available options:
application_questions
, follow_up_questions
, feedback_form
Available options:
textbox
, text_area
, radio
, checkbox
, dropdown
, upload
, header
, scorecard
Minimum length:
1
The id of an existing question, leave blank to create a new question
A flag to indicate if the question requires an answer.
A flag to indicate if the question has been archived.
Response
200
application/json
Available options:
off
, optional
, required
Available options:
off
, optional
, required
Available options:
off
, optional
, required
Available options:
off
, optional
, required
Available options:
off
, optional
, required
Available options:
off
, optional
, required
Was this page helpful?
curl --request PUT \
--url https://api.hirehive.com/v1.0/{company_id}/forms/application/{form_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"questions": [
{
"id": "<string>",
"type": "textbox",
"question": "<string>",
"description": "<string>",
"options": [
{
"id": "<string>",
"label": "<string>",
"description": "<string>",
"archived": true,
"tag": {
"id": "<string>",
"name": "<string>"
}
}
],
"required": true,
"restricted": true,
"archived": true,
"display_order": 123
}
],
"name": "<string>",
"type": "application_questions"
}'
{
"data": {
"current_title": "off",
"current_company": "off",
"location": "off",
"phone": "off",
"resume": "off",
"cover_letter": "off"
}
}