POST api/Vendor/UpdateTaskDeliveryAlert
Update information for Delivery Alert Task (CONFALERTDEL)
Request Information
URI Parameters
None.
Body Parameters
TaskDeliveryAlertParm| Name | Description | Type | Additional information |
|---|---|---|---|
| UserGUID |
Unique system defined user identifier |
string |
None. |
| EntityGUID |
Unique system defined entity identifer (ShipmentGUID) |
string |
None. |
| AcceptOrDecline |
Accept or decline alert |
string |
None. |
| Comment |
Comments regarding delivery |
string |
None. |
| LocationData |
Geocoded location data from device |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserGUID": "sample string 1",
"EntityGUID": "sample string 2",
"AcceptOrDecline": "sample string 3",
"Comment": "sample string 4",
"LocationData": "sample string 5"
}
application/xml, text/xml
Sample:
<TaskDeliveryAlertParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Mobile.Models"> <AcceptOrDecline>sample string 3</AcceptOrDecline> <Comment>sample string 4</Comment> <EntityGUID>sample string 2</EntityGUID> <LocationData>sample string 5</LocationData> <UserGUID>sample string 1</UserGUID> </TaskDeliveryAlertParm>
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>