Skip to main content

List all condition check-ins.

GET 

/api/checkins/condition

Retrieve the list of condition check-ins of all users owned by a partner.

Request

Query Parameters

    page int32

    Default value: 0

    Page number

    Example: 0
    size int32

    Default value: 10

    Number of items per page

    Example: 10
    sortBy string

    Possible values: [dateCheckedIn, dateUpdated]

    Default value: dateCheckedIn

    Sort by field

    Example: dateCheckedIn
    sortDirection string

    Possible values: [asc, desc]

    Default value: desc

    Sort by order

    Example: desc
    searchBy string

    Possible values: [license, vin, state, userFirstName, userLastName, userEmail, userPhone]

    Search by field

    Example: userFirstName
    searchValue string

    Search by value

    Example: Tom
    status string

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

    Filter condition check-ins by status

    Example: Pending
    vehicleId string

    Filter condition check-ins by vehicle id

    Example: XT_IVEHABC123
    checkinStartDate string

    Filter condition check-ins whose check-in date is greater or than equal to the date passed in. (The date should be in the ISO8601 UTC format YYY-MM-DDThh:mm:ss.SSSZ)

    Example: 2024-01-01T00:00:00.000Z
    checkinEndDate string

    Filter condition check-ins whose check-in date is less or than equal to the date passed in. (The date should be in the ISO8601 UTC format YYY-MM-DDThh:mm:ss.SSSZ)

    Example: 2024-01-01T00:00:00.000Z
    updatedStartDate string

    Filter condition check-ins whose update date is greater or than equal to the date passed in. (The date should be in the ISO8601 UTC format YYY-MM-DDThh:mm:ss.SSSZ)

    Example: 2024-01-01T00:00:00.000Z
    updatedEndDate string

    Filter condition check-ins whose update date is less or than equal to the date passed in. (The date should be in the ISO8601 UTC format YYY-MM-DDThh:mm:ss.SSSZ)

    Example: 2024-01-01T00:00:00.000Z

Header Parameters

    partnerId stringrequired

    Partner Id

    clientId stringrequired

    Client Id

    clientSecret stringrequired

    Client Secret

Responses

List of Condition checkin objects matching given query.

Schema

    totalItems int64

    Total number of condition check-ins

    currentPage int32

    Current page number

    totalPages int64

    Current page size

    itemsOnPage int32

    Number of condition check-ins on current page

    checkins

    object[]

    List of condition check-ins

  • 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

  • ]

  • vehicle

    object

    Check-in vehicle

    id string

    Id of the vehicle

    license string

    License plate number

    photoUrl string

    Photo of Vehicle

    make string

    Make of the vehicle

    model string

    Model of the vehicle

    vin string

    VIN of the vehicle.

    state string

    2 Letter State Code (eg. AL, CA, CO etc.)

    owner

    object

    Check-in owner

    id string

    Id of the user

    firstName string

    User's first name

    lastName string

    User's last name

  • ]

Loading...