GetVehicleLog

  • This document details the GetVehicle request and response structures within the Fleet Engine system.

  • The request structure includes details about the request itself and the vehicle's ID.

  • The response structure includes the server response if successful, or an error response if the request failed.

  • GetVehicleRequestLog provides details specifically on the structure of the GetVehicle request sent to Fleet Engine.

Details on GetVehicle request and response.

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

object (GetVehicleRequestLog)

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.

GetVehicleRequestLog

Details on the GetVehicle request.

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

object (RequestHeaderLog)

Request header.

vehicleId

string

The ID of the vehicle being requested.