GET api/Mobile/SelectInRouteToPickup/{UserGUID}/{EntityGUID}
Retrieve information for En Route To Pickup Task (INROUTEPU).
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UserGUID |
Unique user global identifier |
string |
Required |
| EntityGUID |
Identifier of the entity that is related to the task |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
TaskInRouteToPickupRespMobile| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccessful | boolean |
None. |
|
| ErrorMessage | string |
None. |
|
| PickupGUID | string |
None. |
|
| PickupFrom | string |
None. |
|
| QuotedDateTime | date |
None. |
|
| QuotedDateTimeDisplay | string |
None. |
|
| Shipments | Collection of ShipmentToPickup |
None. |
Response Formats
application/json, text/json
Sample:
{
"Shipments": [
{
"OrderNumber": "sample string 1",
"ShipmentGUID": "sample string 2",
"DeliverTo": "sample string 3",
"Reference": "sample string 4",
"Pieces": 5,
"Weight": 1.0,
"WeightUOM": "sample string 6",
"Contents": "sample string 7"
},
{
"OrderNumber": "sample string 1",
"ShipmentGUID": "sample string 2",
"DeliverTo": "sample string 3",
"Reference": "sample string 4",
"Pieces": 5,
"Weight": 1.0,
"WeightUOM": "sample string 6",
"Contents": "sample string 7"
}
],
"IsSuccessful": true,
"ErrorMessage": "sample string 2",
"PickupGUID": "sample string 3",
"PickupFrom": "sample string 4",
"QuotedDateTime": "2025-10-31T19:37:11.2430429-07:00",
"QuotedDateTimeDisplay": "FRI 31-OCT 19:37"
}
application/xml, text/xml
Sample:
<TaskInRouteToPickupRespMobile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mnx.WebApi.Transportation.Models.Mobile">
<ErrorMessage>sample string 2</ErrorMessage>
<IsSuccessful>true</IsSuccessful>
<PickupFrom>sample string 4</PickupFrom>
<PickupGUID>sample string 3</PickupGUID>
<QuotedDateTime>2025-10-31T19:37:11.2430429-07:00</QuotedDateTime>
<Shipments>
<ShipmentToPickup>
<Contents>sample string 7</Contents>
<DeliverTo>sample string 3</DeliverTo>
<OrderNumber>sample string 1</OrderNumber>
<Pieces>5</Pieces>
<Reference>sample string 4</Reference>
<ShipmentGUID>sample string 2</ShipmentGUID>
<Weight>1</Weight>
<WeightUOM>sample string 6</WeightUOM>
</ShipmentToPickup>
<ShipmentToPickup>
<Contents>sample string 7</Contents>
<DeliverTo>sample string 3</DeliverTo>
<OrderNumber>sample string 1</OrderNumber>
<Pieces>5</Pieces>
<Reference>sample string 4</Reference>
<ShipmentGUID>sample string 2</ShipmentGUID>
<Weight>1</Weight>
<WeightUOM>sample string 6</WeightUOM>
</ShipmentToPickup>
</Shipments>
</TaskInRouteToPickupRespMobile>