cURL
curl --request POST \ --url https://api.hirehive.com/v1.0/{company_id}/forms/application \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "type": "application_questions", "questions": [ { "type": "textbox", "question": "<string>", "description": "<string>", "options": [ { "label": "<string>", "description": "<string>", "tag": { "id": "<string>", "name": "<string>" } } ], "required": true, "restricted": true, "display_order": 123 } ] } '
{ "data": { "questions": [ { "type": "textbox", "id": "<string>", "question": "<string>", "description": "<string>", "options": [ { "label": "<string>", "id": "<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 } }
Create a new application or follow-up form
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
1
application_questions
follow_up_questions
feedback_form
Show child attributes
Was this page helpful?