PUT
/
v1.0
/
{company_id}
/
forms
/
application
/
default
curl --request PUT \
  --url https://api.hirehive.com/v1.0/{company_id}/forms/application/default \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "current_title": "off",
  "current_company": "off",
  "location": "off",
  "phone": "off",
  "resume": "off",
  "cover_letter": "off"
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

company_id
string
required

Body

application/json
current_title
enum<string>
Available options:
off,
optional,
required
current_company
enum<string>
Available options:
off,
optional,
required
location
enum<string>
Available options:
off,
optional,
required
phone
enum<string>
Available options:
off,
optional,
required
resume
enum<string>
Available options:
off,
optional,
required
cover_letter
enum<string>
Available options:
off,
optional,
required