CreateVehicleLog

  • This document provides details on the CreateVehicle request and response within the Fleet Engine system.

  • It includes a JSON representation and field descriptions for the overall CreateVehicle log.

  • The CreateVehicle log captures the request sent to Fleet Engine, the response (if successful), and any error response.

  • Further details on the CreateVehicleRequestLog are provided, including a JSON representation and field descriptions for the request header, vehicle ID, and the Vehicle entity itself.

Details on CreateVehicle request and response.

JSON representation
{
  "request": {
    object (CreateVehicleRequestLog)
  },
  "response": {
    object (VehicleLog)
  },
  "errorResponse": {
    object (ErrorResponseLog)
  }
}
Fields
request

object (CreateVehicleRequestLog)

The request sent to Fleet Engine.

response

object (VehicleLog)

The response returned to the client. If the RPC call results in an error the response is not set.

errorResponse

object (ErrorResponseLog)

The error response returned to the client. It will be unset if the RPC call succeeded.

CreateVehicleRequestLog

Details on the CreateVehicle request.

JSON representation
{
  "header": {
    object (RequestHeaderLog)
  },
  "vehicleId": string,
  "vehicle": {
    object (VehicleLog)
  }
}
Fields
header

object (RequestHeaderLog)

Request header.

vehicleId

string

The ID of the vehicle being created.

vehicle

object (VehicleLog)

The Vehicle entity to create.