GET api/Dispatch/GetUnassignedStops/{auth}

Get the list of unassigned stops (pickup or delivery)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
auth

Unique authorization identifier

string

Required

Body Parameters

None.

Response Information

Resource Description

GetUnassignedStopsResp
NameDescriptionTypeAdditional information
IsSuccessful

Method was successful (true/false)

boolean

None.

ErrorMessage

If unsuccessful, the error message

string

None.

Items

The list of unassigned pickups and deliveries for your service area

Collection of DispatchItem

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<GetUnassignedStopsResp 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>
  <Items i:nil="true" />
</GetUnassignedStopsResp>