Jobs

Create job

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.eyJzdWIiOiIxMjc3Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzQyNDY0OTM3LCJleHAiOjE3NDUwNTY5MzcsImp0aSI6IjY0NzI5OThjLWQ1YTEtNDlkMi1hMWQ1LWZlODgxNmVkNTRiMiJ9.ARQHnQwVEirT-K-TS4RmPI9joMPvf6T-O5JCGdkImqY
Host: example.org
Cookie: 

Body

{
  "job": {
    "show_by": "fixed_hours",
    "expected_weekly_hours": 30,
    "title": "Accounting Manager",
    "description": "Terebro aedificium talio. Arceo crinis aro.",
    "postcode": "LS1 1UR",
    "industries": [
      "warehouse",
      "rail_replacement"
    ],
    "drivers_required": 3,
    "start_date": "2025-03-26",
    "end_date": "2025-10-04",
    "min_rating": 4.4,
    "job_type": "full_time",
    "status": "published",
    "published_at": "2025-03-20T09:02:17.429Z",
    "wages_attributes": {
      "0": {
        "kind": "bank_holiday",
        "rate": 80.62
      }
    }
  }
}

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/"2f97c3c014ed0ae35f9144c978ec429f"
cache-control: max-age=0, private, must-revalidate
x-request-id: 4165405f-bd0f-44ff-85b7-4a67b052b457
x-runtime: 0.016475
content-length: 634

Body

{
  "job": {
    "id": 439,
    "chat": null,
    "dbs_check": "no",
    "dbs_last_performed_months": null,
    "description": "Terebro aedificium talio. Arceo crinis aro.",
    "drivers_required": 3,
    "end_date": "2025-10-04",
    "expected_weekly_hours": 30,
    "hours_from": null,
    "hours_to": null,
    "industries": [
      "warehouse",
      "rail_replacement"
    ],
    "inexperienced_drivers": false,
    "job_type": "full_time",
    "licenses": [

    ],
    "min_rating": "4.4",
    "number": 49829134,
    "overtime_rate": null,
    "postcode": "LS1 1UR",
    "published_at": null,
    "show_by": "fixed_hours",
    "start_date": "2025-03-26",
    "status": "draft",
    "title": "Accounting Manager",
    "wages": [
      {
        "id": 744,
        "kind": "bank_holiday",
        "rate": "80.62"
      }
    ],
    "young_drivers": false
  }
}