Skip to main content

get All custom Miles for Vehicle

This Java function retrieves all custom miles for a vehicle based on the dealer UUID and request parameters.

Path Parameters
    dealerUUID string required

    The dealerUuid parameter in the getAllMilesForVehicle method is a path variable representing the unique identifier of the dealer for whom you want to retrieve all custom miles for a vehicle. This parameter is extracted from the URL path and used to identify the specific dealer in the system.

Request Body required

The milesForVehicleRequest parameter in the getAllMilesForVehicle method is of type MilesForVehicleRequest. It is annotated with @RequestBody, indicating that the data for this parameter will be obtained from the request body of the HTTP request.

    requesterUserUUID string
    baseVehicleId int64
    engineId int64
    brandId int64
    severity boolean
Responses

A ResponseEntity object containing a MileageForVehicleResponse object is being returned.


Schema
    errors object[]
  • Array [
  • errorName string
    errorMessage string
    errorCode int32
  • ]
  • warnings object[]
  • Array [
  • warningCode string
    warningTitle string
    warningMessage string
  • ]
  • statusCode int32
    apiRequestId string
    milesList int64[]
Loading...