POST api/Vendor/UpdateTaskTransferDrop
Use this method to confirm transfer drop
Request Information
URI Parameters
None.
Body Parameters
UpdateTaskTransferDropParm| Name | Description | Type | Additional information |
|---|---|---|---|
| UserGUID |
Unique authenticated user identifier |
string |
None. |
| EntityGUID |
The entity (manifest) to mark transfer dropped |
string |
None. |
| WaybillNumber |
The waybill number for the drop manifest |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserGUID": "sample string 1",
"EntityGUID": "sample string 2",
"WaybillNumber": "sample string 3"
}
application/xml, text/xml
Sample:
<UpdateTaskTransferDropParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Mobile.Models"> <EntityGUID>sample string 2</EntityGUID> <UserGUID>sample string 1</UserGUID> <WaybillNumber>sample string 3</WaybillNumber> </UpdateTaskTransferDropParm>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseBase| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccessful |
Used to determine if method call was successful (true) or failure (false) |
boolean |
Required |
| ErrorMessage |
The error message if method call was not successful |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccessful": true,
"ErrorMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Mobile.Models"> <ErrorMessage>sample string 2</ErrorMessage> <IsSuccessful>true</IsSuccessful> </ResponseBase>