get_form_schema
curl --request GET \
--url https://rest.hotfix.jobs/v1/employer/jobs/{job_id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://rest.hotfix.jobs/v1/employer/jobs/{job_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://rest.hotfix.jobs/v1/employer/jobs/{job_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"form_schema": {
"job_id": "9a1b2c3d-4e5f-6789-abcd-ef0123456789",
"ats_platform": "",
"fields": [
{
"id": "full_name",
"label": "Name",
"type": "text",
"required": true,
"section": "personal"
},
{
"id": "email",
"label": "Email",
"type": "email",
"required": true,
"section": "personal"
}
]
}
}Jobs
get_form_schema
The seeker apply form for one hosted job. Same FormField list as board and catalog Quick apply. On HTTP, read form_schema on the job detail response. MCP tool: get_form_schema.
GET
/
v1
/
employer
/
jobs
/
{job_id}
get_form_schema
curl --request GET \
--url https://rest.hotfix.jobs/v1/employer/jobs/{job_id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://rest.hotfix.jobs/v1/employer/jobs/{job_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://rest.hotfix.jobs/v1/employer/jobs/{job_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"form_schema": {
"job_id": "9a1b2c3d-4e5f-6789-abcd-ef0123456789",
"ats_platform": "",
"fields": [
{
"id": "full_name",
"label": "Name",
"type": "text",
"required": true,
"section": "personal"
},
{
"id": "email",
"label": "Email",
"type": "email",
"required": true,
"section": "personal"
}
]
}
}