Create job
Jobs
POST create job
Endpoint
POST /api/v1/jobs
Parameters
Name | Description |
---|---|
job[title] required | Job title |
job[drivers_required] required | Job drivers required |
job[industries] required | Job industries |
job[start_date] required | Job start date |
job[end_date] | Job end date |
job[ongoing] | Job ongoing |
job[postcode] required | Job postcode |
job[description] required | Job description |
job[licenses] | Job licenses |
job[min_rating] required | Job min rating |
job[young_drivers] | Job young drivers |
job[inexperienced_drivers] | Job inexperienced drivers |
job[job_type] required | Job job type |
job[show_by] required | Job show by |
job[expected_weekly_hours] | Job expected weekly hours |
job[hours_from] | Job hours from |
job[hours_to] | Job hours to |
job[wages_attributes] required | Job wages attributes |
job[overtime_after] | Job overtime after |
job[overtime_rate] | Job overtime rate |
job[dbs_check] | Job dbs check |
job[dbs_last_performed_months] | Job dbs last performed months |
Request
Route
POST /api/v1/jobs
Headers
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxMjg5Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzU4MDEyNDk0LCJleHAiOjE3NjA2MDQ0OTQsImp0aSI6Ijg1YWE2YTY0LTIxZDItNDY3Mi04OGJmLWE1YWExN2NkN2Y4NyJ9.rZKKxxUEwcQD4szzmnRFKxE6qSKtKP05ntCkxgzDn3U
Host: example.org
Cookie:
Body
{
"job": {
"show_by": "fixed_hours",
"expected_weekly_hours": 29,
"title": "Hospitality Architect",
"description": "Deprimo articulus censura. Atrocitas consuasor antea.",
"postcode": "NG1 1AA",
"industries": [
"tourism",
"bus"
],
"drivers_required": 6,
"start_date": "2025-09-17",
"end_date": "2026-09-05",
"min_rating": 1.6,
"job_type": "part_time",
"status": "published",
"published_at": "2025-09-16T07:48:14.861Z",
"wages_attributes": {
"0": {
"kind": "sunday",
"rate": 100
}
}
}
}
Response
Simulated Response
Status
200
Headers
x-frame-options: SAMEORIGIN
x-xss-protection: 0
x-content-type-options: nosniff
x-permitted-cross-domain-policies: none
referrer-policy: strict-origin-when-cross-origin
content-type: application/json; charset=utf-8
vary: Accept, Origin
etag: W/"12dbd49d435db1317297d266fe07d579"
cache-control: max-age=0, private, must-revalidate
x-request-id: b3aa7f09-0aff-4cf7-808f-142216586908
x-runtime: 0.019167
content-length: 645
Body
{
"job": {
"id": 442,
"chat": null,
"dbs_check": "no",
"dbs_last_performed_months": null,
"description": "Deprimo articulus censura. Atrocitas consuasor antea.",
"drivers_required": 6,
"end_date": "2026-09-05",
"expected_weekly_hours": 29,
"hours_from": null,
"hours_to": null,
"industries": [
"tourism",
"bus"
],
"inexperienced_drivers": false,
"job_type": "part_time",
"licenses": [
],
"min_rating": "1.6",
"number": 60165651,
"overtime_rate": null,
"postcode": "NG1 1AA",
"published_at": null,
"show_by": "fixed_hours",
"start_date": "2025-09-17",
"status": "draft",
"title": "Hospitality Architect",
"wages": [
{
"id": 751,
"driver_rate": null,
"kind": "sunday",
"rate": "100.0"
}
],
"young_drivers": false
}
}