GET api/Vendor/SelectTaskTransferDropAlert/{UserGUID}/{EntityGUID}
Use to select information for the transfer drop alert step
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UserGUID |
Unique user identifier |
string |
Required |
| EntityGUID |
Unique entity(manifest) to drop |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
TaskTransferDropAlertConfResp| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccessful |
Used to determine if method call was successful (true) or failure (false) |
boolean |
None. |
| ErrorMessage |
The error message if method call was not successful |
string |
None. |
| ManifestGUID |
Unique manifest identifier to drop |
string |
None. |
| ManifestNumber |
Unique manifest number to drop |
integer |
None. |
| DropAt |
Drop location |
string |
None. |
| Shipments |
List of shipments to drop |
Collection of ShipmentToDrop |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccessful": true,
"ErrorMessage": "sample string 2",
"ManifestGUID": "sample string 3",
"ManifestNumber": 4,
"DropAt": "sample string 5",
"Shipments": [
{
"ShipmentGUID": "sample string 1",
"ShipmentNumber": 2,
"WaybillNumber": "sample string 3"
},
{
"ShipmentGUID": "sample string 1",
"ShipmentNumber": 2,
"WaybillNumber": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<TaskTransferDropAlertConfResp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Mobile.Models">
<DropAt>sample string 5</DropAt>
<ErrorMessage>sample string 2</ErrorMessage>
<IsSuccessful>true</IsSuccessful>
<ManifestGUID>sample string 3</ManifestGUID>
<ManifestNumber>4</ManifestNumber>
<Shipments>
<ShipmentToDrop>
<ShipmentGUID>sample string 1</ShipmentGUID>
<ShipmentNumber>2</ShipmentNumber>
<WaybillNumber>sample string 3</WaybillNumber>
</ShipmentToDrop>
<ShipmentToDrop>
<ShipmentGUID>sample string 1</ShipmentGUID>
<ShipmentNumber>2</ShipmentNumber>
<WaybillNumber>sample string 3</WaybillNumber>
</ShipmentToDrop>
</Shipments>
</TaskTransferDropAlertConfResp>