Jobs

Update job

PUT update job

Endpoint

PUT /api/v1/jobs/:id

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

PUT /api/v1/jobs/445

Headers

Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxMzAxIiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzYwOTUwNDYzLCJleHAiOjE3NjM1NDI0NjMsImp0aSI6IjVmYjhmYjAwLTNmMGUtNDNjYi05MDMxLWI2MmVjZjYxYzNhZiJ9.41YFDRpAnoEgNUINH6uKSmRMYYsY3Fe1DX4BKiRd5f4
Host: example.org
Cookie: 

Body

{
  "job": {
    "id": 445,
    "number": 75433618,
    "title": "Administration Manager",
    "description": "Dapifer aedificium tonsor. Vae esse speculum.",
    "postcode": "EC1A 1BB",
    "industries": [
      "warehouse",
      "coach"
    ],
    "drivers_required": 6,
    "start_date": "2025-10-24",
    "end_date": "2026-10-11",
    "job_type": "full_time",
    "show_by": "range_of_hours",
    "expected_weekly_hours": 40,
    "hours_from": 10,
    "hours_to": 20,
    "licenses": [
      "d1",
      "ce"
    ],
    "status": "draft",
    "published_at": "2025-10-20T07:54:23.560Z",
    "longitude": -74.0059731,
    "latitude": 40.7143528,
    "created_at": "2025-10-20T08:54:23.561Z",
    "updated_at": "2025-10-20T08:54:23.561Z",
    "company_id": 462,
    "min_rating": "3.7",
    "min_rate": "61.0",
    "region": null,
    "young_drivers": false,
    "inexperienced_drivers": false,
    "overtime_after": null,
    "overtime_rate": null,
    "discarded_at": null,
    "dbs_check": "no",
    "dbs_last_performed_months": null,
    "timer": 86400,
    "webflow_id": null,
    "currency": "GBP",
    "wages_attributes": {
      "754": {
        "id": 754,
        "kind": "saturday",
        "rate": "61.0",
        "created_at": "2025-10-20T08:54:23.562Z",
        "updated_at": "2025-10-20T08:54:23.562Z",
        "wageable_type": "Job",
        "wageable_id": 445,
        "driver_rate": "54.9"
      }
    }
  }
}

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/"6b97ebed8b055f9c5e945c9c6e2630d3"
cache-control: max-age=0, private, must-revalidate
x-request-id: 3ae5bd64-0fb1-4f02-98f7-c21f454b010f
x-runtime: 0.016353
content-length: 693

Body

{
  "job": {
    "id": 445,
    "chat": null,
    "currency": "GBP",
    "dbs_check": "no",
    "dbs_last_performed_months": null,
    "description": "Dapifer aedificium tonsor. Vae esse speculum.",
    "drivers_required": 6,
    "end_date": "2026-10-11",
    "expected_weekly_hours": null,
    "hours_from": 10,
    "hours_to": 20,
    "industries": [
      "warehouse",
      "coach"
    ],
    "inexperienced_drivers": false,
    "job_type": "full_time",
    "licenses": [
      "d1",
      "ce"
    ],
    "min_rating": "3.7",
    "number": 75433618,
    "overtime_rate": null,
    "postcode": "EC1A 1BB",
    "published_at": "2025-10-20T07:54:23.560Z",
    "show_by": "range_of_hours",
    "start_date": "2025-10-24",
    "status": "draft",
    "title": "Administration Manager",
    "wages": [
      {
        "id": 754,
        "driver_rate": null,
        "kind": "saturday",
        "rate": "61.0"
      }
    ],
    "young_drivers": false
  }
}