Blocked Drivers

Create blocked driver(block)

POST create blocked driver

Endpoint

POST /api/v1/blocked_drivers

Parameters

Name Description
blocked_driver[driver_id] required Blocked driver driver
blocked_driver[reason] required Blocked driver reason

Request

Route

POST /api/v1/blocked_drivers

Headers

Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNiIsInNjcCI6InVzZXIiLCJhdWQiOm51bGwsImlhdCI6MTc1ODAxMjQ1OCwiZXhwIjoxNzYwNjA0NDU4LCJqdGkiOiIzMzBmMDczNS0wOWMwLTRjZWYtOWZkNS1mNDQ1ODNiZjIwNWUifQ.7lowNHFCIG7M4pR6TtogWJaqoYI5HAuekiREW_9iBfg
Host: example.org
Cookie: 

Body

{
  "blocked_driver": {
    "reason": "Laborum est veniam corporis.",
    "driver_id": 17
  }
}

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/"6a9d9cedce7cdabfe937407feeb3d76c"
cache-control: max-age=0, private, must-revalidate
x-request-id: 5316576c-7492-425f-a34b-40d71ae7f7f7
x-runtime: 0.026882
content-length: 240

Body

{
  "blocked_driver": {
    "id": 1,
    "blocked_at": "2025-09-16T08:47:38.562Z",
    "driver": {
      "id": 17,
      "first_name": "Gerardo",
      "last_name": "Parisian",
      "profile_id": null,
      "referral_code": "105088"
    },
    "globally_blocked": false,
    "reason": "Laborum est veniam corporis."
  }
}