Vehicle API - V2

Update vehicle

Updates the information of a specific vehicle identified by its ID and returns the latest details.


Open Swagger Specification

Endpoint

    PUT - https://api.travisroadservices.com/v2/vehicles/{id}
    Copy
  

Query params

Parameter Type Description
id string The ID of the vehicle.

Request body

Response body

Response 200

Response 400

No response body

Response 401

No response body - No bearer token set verify if your token is added as bearer token

Response 403

No response body - You don't have access to this API resource

Response 404

No response body

Response 422


{
    "type": "https://tools.ietf.org/html/rfc2616#section-10",
    "title": "An error occurred",
    "detail": "vehicleType: This value should not be blank.",
    "violations": [
        {
            "propertyPath": "vehicleType",
            "message": "This value should not be blank.",
            "code": "c1051bb4-d103-4f74-8988-acbcafc7fdc3"
        }
    ]
}