v1

latestOpenAPI 3.0.12026-07-26222700728.0 KB
Mileage Cars

Query cars

Query cars for the authenticated user

post/v6/mileage/cars/query

Request body

cursorstring nullable

Cursor from the previous paginated response

limitinteger

Page size, i.e. number of items to return per page

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": [
    {
      "id": "car_28868401",
      "make": "Toyota",
      "model": "Camry",
      "name": "My Toyota Camry",
      "year": 2022,
      "isPrimary": true,
      "status": "ACTIVE",
      "details": [
        {
          "year": 2024,
          "odometer": 12500
        }
      ],
      "customData": {
        "internal_key": "some_internal_key",
        "some_other_field": 23434
      }
    }
  ]
}