Skip to main content

Retrieve a list of condition check-ins for a vehicle

GET 

/api/vehicles/:vehicleId/checkins/condition

Retrieve a list of all condition check-ins for the given vehicle. If the caller does not have access to the vehicle throws an exception.

Request

Path Parameters

    vehicleId stringrequired

Header Parameters

    partnerId stringrequired

    Partner Id

    clientId stringrequired

    Client Id

    clientSecret stringrequired

    Client Secret

Responses

List of condition check-in objects for the vehicle.

Schema

  • Array [

  • id string

    Id of the checkin

    license string

    License plate number

    userNote string

    User generated note. For communication between the user to the admin

    adminNote string

    Admin generated note. Usually used for on-hold or declined check-ins

    checkedInAt string

    Check-in date

    checkInStatus string

    Possible values: [Confirmed, Declined, OnHold, Pending]

    Status of the check-in

    updated string

    Last updated on

    photos

    object[]

    The photos of the vehicle taken from different angles

  • Array [

  • photoUrl string

    URL of the photo

    type string

    Possible values: [Back, Front, DriverSide, DriverSideFront, DriverSideBack, PassengerSide, PassengerSideFront, PassengerSideBack]

    Type of the photo. A value from one of the condition checkin photo types.

    latitude double

    Latitude at which photo was taken

    longitude double

    Longitude at which photo was taken

  • ]

  • ]

Loading...