Fleets#

This service is used to query a user’s fleets.

Request

GET /v3/vehicles/fleets

Response

[
    {
        "id": 12345,
        "name": "My Fleet",
        "timestamp": "2021-01-01T00:00:00"
    }
]

Fleet Vehicles#

This service is used to query the vehicles within a user’s fleet.

Request

GET /v3/vehicles/fleets/<fleet_id>

Parameters

fleet_id string required

ID of the fleet to query.

Response

[
    {
        "description": "My Vehicle",
        "index": 0,
        "fleet_vehicle_id": 12345,
        "engine": "2.5L V6 DOHC 24V",
        "year": 2021,
        "make": "Toyota",
        "model": "Camry"
    }
]