| TripServiceUpdateTrip Method |
Updates a trip. Only updates .scheduledPickUpTime and scheduledDropOffTime
POST restURL/TripService/UpdateTrip?Token={token}&Device={device}
Namespace:
ParaPlanREST
Assembly:
ParaPlanREST (in ParaPlanREST.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public ObjectResponse<Trip> UpdateTrip(
Trip trip,
string token,
string device
)
public:
ObjectResponse<Trip^>^ UpdateTrip(
Trip^ trip,
String^ token,
String^ device
)
function UpdateTrip(trip, token, device);
Parameters
- trip
- Type: ParaPlanREST.ModelsTrip
A of Trip to be updated - token
- Type: SystemString
- device
- Type: SystemString
Device name used when logging into API
Return Value
Type:
ObjectResponseTripObject that has updated trip.
See Also