PUT
/
api
/
vehicle
/
{ID}
curl --request PUT \
  --url https://api.app.fleetit.com/api/vehicle/{ID}/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "lessee_renter": "",
  "plate_number": "",
  "plate_state": "",
  "tracking_code": "",
  "vehicle_make": "",
  "vehicle_model": "",
  "year": ""
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

ID
string
required
Example:

""

Body

application/json
lessee_renter
string
Example:

""

plate_number
string
Example:

""

plate_state
string
Example:

""

tracking_code
string
Example:

""

vehicle_make
string
Example:

""

vehicle_model
string
Example:

""

year
string
Example:

""

Was this page helpful?