GET api/Dispatch/DeleteStopFromTrip/{auth}/{TripDetailID}

Delete pickup or delivery from trip Unique authorization identifier

Request Information

URI Parameters

NameDescriptionTypeAdditional information
auth

string

Required

TripDetailID

The unique trip detail (stop) identifier

integer

Required

Body Parameters

None.

Response Information

Resource Description

DeleteStopFromTripResp
NameDescriptionTypeAdditional information
IsSuccessful

Method was successful (true/false)

boolean

None.

ErrorMessage

If unsuccessful, the error message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccessful": true,
  "ErrorMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<DeleteStopFromTripResp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mnx.WebApi.Transportation.Models">
  <ErrorMessage>sample string 2</ErrorMessage>
  <IsSuccessful>true</IsSuccessful>
</DeleteStopFromTripResp>