| TripServiceTripLogs Method |
Returns Trip Schedule History for date range
GET restURL/TripService/TripLogs?Token={token}&Device={device}&StartTime={startTime}&endTime={endTime}
Namespace:
ParaPlanREST
Assembly:
ParaPlanREST (in ParaPlanREST.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public ListResponse<TripLog> TripLogs(
string token,
string device,
string startTime,
string endTime
)
public:
ListResponse<TripLog^>^ TripLogs(
String^ token,
String^ device,
String^ startTime,
String^ endTime
)
function TripLogs(token, device, startTime, endTime);
Parameters
- token
- Type: SystemString
Token from API Login - device
- Type: SystemString
Device name used when logging into API - startTime
- Type: SystemString
Start of time range for logs. In epoch - endTime
- Type: SystemString
End of time range for logs. In epoch
Return Value
Type:
ListResponseTripLogList of TripScheduleHistory
See Also