| TripServiceTripsByClient Method |
View ParaPlan Trips
GET restURL/TripsByClient?Token={token}&Device={device}&ClientID={clientId}&DateRangeStart={dateRangeStart}&DateRangeEnd={dateRangeEnd}&Sort={sort}
Namespace:
ParaPlanREST
Assembly:
ParaPlanREST (in ParaPlanREST.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public ListResponse<Reservation> TripsByClient(
string token,
string device,
string clientId,
string dateRangeStart = "",
string dateRangeEnd = "",
string sort = "",
string limit = ""
)
public:
ListResponse<Reservation^>^ TripsByClient(
String^ token,
String^ device,
String^ clientId,
String^ dateRangeStart = L"",
String^ dateRangeEnd = L"",
String^ sort = L"",
String^ limit = L""
)
function TripsByClient(token, device, clientId, dateRangeStart, dateRangeEnd, sort, limit);
Parameters
- token
- Type: SystemString
- device
- Type: SystemString
Device name used when logging into API - clientId
- Type: SystemString
ParaPlan ID of the client - dateRangeStart (Optional)
- Type: SystemString
Epoch value of start of search range - dateRangeEnd (Optional)
- Type: SystemString
Epoch value of the end of search range - sort (Optional)
- Type: SystemString
If the results should be sorted. Accepts ASC or DESC - limit (Optional)
- Type: SystemString
The number of results to display
Return Value
Type:
ListResponseReservationList of TripRequests
See Also