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.eyJzdWIiOiIxNiIsInNjcCI6InVzZXIiLCJhdWQiOm51bGwsImlhdCI6MTc2MzAyMjE4MiwiZXhwIjoxNzY1NjE0MTgyLCJqdGkiOiJjMzdjZGExOC0zNjE5LTRiNmEtYjMxNS1lYjYxNjYzNTMwYjkifQ.JFW1nglLemIC-5YfHGmY-BCUcUPldzxXuH3TYRTHHGM
Host: example.org
Cookie: 

Body

{
  "blocked_driver": {
    "reason": "Quos corrupti natus tenetur.",
    "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/"c694a2b46b78808ec1ccb58cee67cc02"
cache-control: max-age=0, private, must-revalidate
x-request-id: ffa0bd41-6a40-4d9d-93c6-33068b221817
x-runtime: 0.035549
content-length: 265

Body

{
  "blocked_driver": {
    "id": 1,
    "blocked_at": "2025-11-13T08:23:02.574Z",
    "driver": {
      "id": 17,
      "financial_company_id": null,
      "first_name": "Jody",
      "last_name": "O'Reilly",
      "profile_id": null,
      "referral_code": "957146"
    },
    "globally_blocked": false,
    "reason": "Quos corrupti natus tenetur."
  }
}