[GET] ~/tracking/vehicles/{track}?vehicleId={vehicleId}

Returns the number of tracks an action performed by the user in context of a vehicle. Tracking a specific action for multiple vehicles is not supported.

Request Information

URI Parameters

NameDescriptionType
track

The action to be tracked.

VehicleTrackAction

This value is required and must not be omitted.

vehicleId

The vehicle identifiers for which the action is tracked.

integer

This value is required and must not be omitted.

Body Parameters

None.

Request Formats

None.

Response Information

Resource Description

A CalculateFinancialResponse.

An instance of: VehicleActionStatistics
NameDescriptionType
Total

Gets or sets the number of.

integer

AveragePerDay

Gets or sets the average per day.

decimal number

MaxPerDay

Gets or sets the maximum per day.

integer

MinPerDay

Gets or sets the minimum per day.

integer

ByDay

Gets or sets the by day.

Dictionary of date [key] and integer [value]

Response Formats

application/json, text/json

Sample:
{
  "total": 1,
  "averagePerDay": 1.1,
  "maxPerDay": 1,
  "minPerDay": 1,
  "byDay": {
    "2026-03-18T20:57:19.6081655+01:00": 2
  }
}