Click or drag to resize
ParaPlan Logo

TripServiceTripsInWrapper Method

Returns a list of stops based on paramters
Call - restUrl/TripsService/TripsInWrapper/Changes?token=(token)&device=(device)&Driver=(driverID)&Date=(tripDate)&Client=(clientID)&DateDelta=(dateDelta)&v2=1

Namespace:  ParaPlanREST
Assembly:  ParaPlanREST (in ParaPlanREST.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public ListResponse<Stop> TripsInWrapper(
	string token,
	string device,
	string driverID,
	string tripDate,
	string clientID = "0",
	string dateDelta = "0",
	string v2 = "0"
)

Parameters

token
Type: SystemString
Token from API Login
device
Type: SystemString
Device name used when logging into API
driverID
Type: SystemString
ID of driver (int not email)
tripDate
Type: SystemString
Date to get. Use yyyy/MM/dd
clientID (Optional)
Type: SystemString
Filter trips on this client id (default: 0)
dateDelta (Optional)
Type: SystemString
Date range (default: 0)
v2 (Optional)
Type: SystemString
If the calling code has been updated to handle slimer payloads

Return Value

Type: ListResponseStop
A list of stops
See Also