Click or drag to resize
ParaPlan Logo

TripServiceTripsForDispatcher Method

Returns full trips to be used by dispatchers. Has full PU and DO information. Different than TripsInWrapper which returns individual stops.

GET restURL/TripService/TripsForDispatchers?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<Trip> TripsForDispatcher(
	string token,
	string device,
	string startTime,
	string 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 trips. In epoch
endTime
Type: SystemString
End of time range for trips. In epoch

Return Value

Type: ListResponseTrip
List of Trips
See Also