| GPSServiceGetHistory Method |
Gets the history for a single vehicle on a single date
Namespace:
ParaPlanREST
Assembly:
ParaPlanREST (in ParaPlanREST.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public List<VehicleLocation> GetHistory(
string token,
string device,
string date,
string radioID
)
public:
List<VehicleLocation^>^ GetHistory(
String^ token,
String^ device,
String^ date,
String^ radioID
)
function GetHistory(token, device, date, radioID);
Parameters
- token
- Type: SystemString
Token from API Login - device
- Type: SystemString
Device name used when logging into API - date
- Type: SystemString
The date to get data for. Should be in a format that can be parsed by .NET DateTime.Parse - radioID
- Type: SystemString
RadioID as stored in Vehicles or $"D{DriverID}"
Return Value
Type:
ListVehicleLocationList of history
See Also