Creates or updates a driver

PUT /api/driver

If a driver is found by the given license number, it will be updated, otherwise a new driver will be created

Headers

  • Specify effective organization_id for Admin and Group Organization Admins. This is a global header for all endpoints only taken into consideration when it makes sense (it won't be used in Auth, for example)

application/json

Body

Responses

PUT /api/driver
curl \
 -X PUT https://api-dev.gatego.io:443/api/driver \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"carrier_id":42,"license":"string","license_expiration":"2023-05-04T09:42:00+00:00","license_picture_id":42,"name":"string","photo_id":42,"truck_carrier_id":42,"truck_id":"string","truck_number":"string"}'
Request example
# Headers

# Payload
{
  "carrier_id": 42,
  "license": "string",
  "license_expiration": "2023-05-04T09:42:00+00:00",
  "license_picture_id": 42,
  "name": "string",
  "photo_id": 42,
  "truck_carrier_id": 42,
  "truck_id": "string",
  "truck_number": "string"
}
Response examples (200)
{
  "account": {
    "active": true,
    "can_view_carrier_ids": [
      42
    ],
    "can_view_other_carriers": true,
    "carrier_id": 42,
    "deleted_at": "2023-05-04T09:42:00+00:00",
    "driver": {
      "license": "string",
      "license_expiration": "2023-05-04T09:42:00+00:00",
      "license_picture_id": "string",
      "photo_id": "string",
      "truck_number": "string"
    },
    "driver_license": "string",
    "driver_license_expiration": "2023-05-04T09:42:00+00:00",
    "driver_license_picture_id": 42,
    "driver_photo_id": 42,
    "driver_truck_number": "string",
    "email": "string",
    "email_confirmed": false,
    "hmac": "string",
    "hmac_android": "string",
    "hmac_ios": "string",
    "id": 42,
    "language_code": "string",
    "last_login": "2023-05-04T09:42:00+00:00",
    "last_login_app_version": "string",
    "last_login_referer": "string",
    "managed_organization_group": {
      "id": 42,
      "managed_organizations": [
        {
          "id": 42,
          "name": "string"
        }
      ],
      "name": "string"
    },
    "name": "string",
    "organization": {
      "id": 42,
      "name": "string"
    },
    "phone_number": "string",
    "previous_last_login": "2023-05-04T09:42:00+00:00",
    "role": "ADMIN",
    "username": "string",
    "yard_id": 42
  },
  "active": true,
  "carrier": {
    "authorized": true,
    "created_at": "2023-05-04T09:42:00+00:00",
    "created_by": "string",
    "fleet_id": "string",
    "id": 42,
    "last_modified_at": "2023-05-04T09:42:00+00:00",
    "last_modified_by": "string",
    "name": "string",
    "rfc": "string",
    "scac": "string",
    "usdot": "string",
    "yards": [
      {
        "authorized": true,
        "carrier_capacity": 42,
        "yard_id": 42
      }
    ]
  },
  "created_at": "2023-05-04T09:42:00+00:00",
  "id": 42,
  "last_modified_at": "2023-05-04T09:42:00+00:00",
  "license": "string",
  "license_expiration": "2023-05-04T09:42:00+00:00",
  "license_picture": {
    "id": 42,
    "name": "string",
    "type": "DRIVER_LICENSE_PHOTO",
    "url": "string"
  },
  "license_picture_id": 42,
  "name": "string",
  "organization_id": 42,
  "photo_id": 42,
  "truck_carrier": {
    "authorized": true,
    "created_at": "2023-05-04T09:42:00+00:00",
    "created_by": "string",
    "fleet_id": "string",
    "id": 42,
    "last_modified_at": "2023-05-04T09:42:00+00:00",
    "last_modified_by": "string",
    "name": "string",
    "rfc": "string",
    "scac": "string",
    "usdot": "string"
  },
  "truck_id": 42,
  "truck_number": "string"
}