Skip to main content

updates custom Mile

This Java function updates custom mileage for a dealer and handles migration checks.

Path Parameters
    dealerUUID string required

    The dealerUuid parameter in the updateCustomMiles method is a path variable representing the unique identifier of a dealer. It is extracted from the URL path and used to identify the specific dealer for which the custom mileage is being updated.

Request Body required

The updateCustomMilesRequest parameter in the updateCustomMiles method is of type UpdateCustomMilesRequest. It is a request body parameter that contains the data needed to update custom miles for a dealer identified by the dealerUuid path variable.

    requesterUserUUID string
    name string
    mileageDTOList object[]
  • Array [
  • startMileage int64
    repeatInterval int64
    endMileage int64
  • ]
  • uuid string
Responses

A ResponseEntity containing a SaveCustomMileageResponse object is being returned from this method.


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