Manage job postings and link them to assessment workflows.
The Jobs API allows you to create and manage job postings, link them to specific exams, and track application flow. Integrate with your ATS to automatically trigger assessments when candidates apply.
/jobs| Name | Type | Required | Description |
|---|---|---|---|
| status | string | Optional | Filter by status: open, closed, draft |
| department | string | Optional | Filter by department |
| location | string | Optional | Filter by location |
{
"data": [
{
"id": "job_mno345",
"title": "Senior Backend Engineer",
"department": "Engineering",
"location": "Remote",
"status": "open",
"exam_id": "exam_abc123",
"applications_count": 47,
"created_at": "2024-01-15T08:00:00Z"
}
],
"pagination": { "total": 8, "limit": 20, "has_more": false }
}/jobs| Name | Type | Required | Description |
|---|---|---|---|
| title | string | Required | Job title |
| description | string | Required | Full job description |
| department | string | Optional | Department name |
| location | string | Optional | Job location |
| exam_id | string | Optional | Linked exam ID for automatic assessment |
| auto_invite | boolean | Optional | Auto-invite applicants to exam (default: false) |
/jobs/{job_id}/jobs/{job_id}/jobs/{job_id}/closeLink jobs to exams using the exam_id field and enable auto_invite to automatically send assessments to all applicants. This streamlines your hiring funnel.
Was this article helpful?