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.eyJzdWIiOiIxMjg5Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzQ4NTE2NTI0LCJleHAiOjE3NTExMDg1MjQsImp0aSI6IjRkYWQzZTA5LTE5YWYtNDgyMS05ZDFkLTE4MDVhODQwZjFkNiJ9.D8eQ0V5bQn4KBRY9-4bUKFOSVOp4vNnsTIB_ziC1uUY
Host: example.org
Cookie:
Body
{
"job": {
"show_by": "maximum_hours",
"expected_weekly_hours": 3,
"title": "Human Sales Architect",
"description": "Coadunatio territo amplitudo. Civitas velit adiuvo.",
"postcode": "L1 1AA",
"industries": [
"international",
"medical"
],
"drivers_required": 1,
"start_date": "2025-06-03",
"end_date": "2025-06-06",
"min_rating": 2.8,
"job_type": "full_time",
"status": "published",
"published_at": "2025-05-29T10:02:04.933Z",
"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/"aa389b186fac3865b1411deb9afa99db"
cache-control: max-age=0, private, must-revalidate
x-request-id: 80b39b9f-211a-45d4-b92c-6c29ae555d7d
x-runtime: 0.017109
content-length: 634
Body
{
"job": {
"id": 442,
"chat": null,
"dbs_check": "no",
"dbs_last_performed_months": null,
"description": "Coadunatio territo amplitudo. Civitas velit adiuvo.",
"drivers_required": 1,
"end_date": "2025-06-06",
"expected_weekly_hours": 3,
"hours_from": null,
"hours_to": null,
"industries": [
"international",
"medical"
],
"inexperienced_drivers": false,
"job_type": "full_time",
"licenses": [
],
"min_rating": "2.8",
"number": 17406335,
"overtime_rate": null,
"postcode": "L1 1AA",
"published_at": null,
"show_by": "maximum_hours",
"start_date": "2025-06-03",
"status": "draft",
"title": "Human Sales Architect",
"wages": [
{
"id": 751,
"kind": "sunday",
"rate": "100.0"
}
],
"young_drivers": false
}
}