Application and Feedback forms
Create 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
Create form
Create a new application or follow-up form
POST
/
v1.0
/
{company_id}
/
forms
/
application
curl --request POST \
--url https://api.hirehive.com/v1.0/{company_id}/forms/application \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"questions": [
{
"type": "textbox",
"question": "<string>",
"description": "<string>",
"options": [
{
"label": "<string>",
"description": "<string>",
"tag": {
"id": "<string>",
"name": "<string>"
}
}
],
"required": true,
"restricted": true,
"display_order": 123
}
],
"name": "<string>",
"type": "application_questions"
}'
{
"data": {
"questions": [
{
"id": "<string>",
"type": "textbox",
"question": "<string>",
"description": "<string>",
"options": [
{
"id": "<string>",
"label": "<string>",
"description": "<string>",
"tag": {
"id": "<string>",
"name": "<string>"
},
"archived": true
}
],
"required": true,
"restricted": true,
"archived": true,
"display_order": 123
}
],
"id": "<string>",
"name": "<string>",
"type": "application_questions",
"used_in": 123
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
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
Response
201
application/json
Available options:
textbox
, text_area
, radio
, checkbox
, dropdown
, upload
, header
, scorecard
Available options:
application_questions
, follow_up_questions
, feedback_form
Was this page helpful?
curl --request POST \
--url https://api.hirehive.com/v1.0/{company_id}/forms/application \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"questions": [
{
"type": "textbox",
"question": "<string>",
"description": "<string>",
"options": [
{
"label": "<string>",
"description": "<string>",
"tag": {
"id": "<string>",
"name": "<string>"
}
}
],
"required": true,
"restricted": true,
"display_order": 123
}
],
"name": "<string>",
"type": "application_questions"
}'
{
"data": {
"questions": [
{
"id": "<string>",
"type": "textbox",
"question": "<string>",
"description": "<string>",
"options": [
{
"id": "<string>",
"label": "<string>",
"description": "<string>",
"tag": {
"id": "<string>",
"name": "<string>"
},
"archived": true
}
],
"required": true,
"restricted": true,
"archived": true,
"display_order": 123
}
],
"id": "<string>",
"name": "<string>",
"type": "application_questions",
"used_in": 123
}
}