POST api/Operations/UpdateTaskTransferDrop
Request Information
URI Parameters
None.
Body Parameters
TaskTransferDropParmName | Description | Type | Additional information |
---|---|---|---|
auth | string |
None. |
|
DropDate | date |
None. |
|
DropTime | date |
None. |
|
CarrierID | integer |
None. |
|
CarrierServiceID | integer |
None. |
|
CarrierAccountID | integer |
None. |
|
WaybillNumber | string |
None. |
|
DropCourierServiceID | integer |
None. |
|
TotalWeight | decimal number |
None. |
|
WeightUOM | string |
None. |
|
DropActualWaitingTime | integer |
None. |
|
DropActualDistance | integer |
None. |
|
DropActualDistanceUOM | string |
None. |
|
DropActualWeight | decimal number |
None. |
|
DropActualWeightUOM | string |
None. |
|
ManifestGUID | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "auth": "sample string 1", "DropDate": "2024-12-28T09:17:38.4658761+00:00", "DropTime": "2024-12-28T09:17:38.4658761+00:00", "CarrierID": 1, "CarrierServiceID": 1, "CarrierAccountID": 1, "WaybillNumber": "sample string 2", "DropCourierServiceID": 1, "TotalWeight": 3.0, "WeightUOM": "sample string 4", "DropActualWaitingTime": 1, "DropActualDistance": 1, "DropActualDistanceUOM": "sample string 5", "DropActualWeight": 1.0, "DropActualWeightUOM": "sample string 6", "ManifestGUID": "sample string 7" }
application/xml, text/xml
Sample:
<TaskTransferDropParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Transportation.Models"> <CarrierAccountID>1</CarrierAccountID> <CarrierID>1</CarrierID> <CarrierServiceID>1</CarrierServiceID> <DropActualDistance>1</DropActualDistance> <DropActualDistanceUOM>sample string 5</DropActualDistanceUOM> <DropActualWaitingTime>1</DropActualWaitingTime> <DropActualWeight>1</DropActualWeight> <DropActualWeightUOM>sample string 6</DropActualWeightUOM> <DropCourierServiceID>1</DropCourierServiceID> <DropDate>2024-12-28T09:17:38.4658761+00:00</DropDate> <DropTime>2024-12-28T09:17:38.4658761+00:00</DropTime> <ManifestGUID>sample string 7</ManifestGUID> <TotalWeight>3</TotalWeight> <WaybillNumber>sample string 2</WaybillNumber> <WeightUOM>sample string 4</WeightUOM> <auth>sample string 1</auth> </TaskTransferDropParm>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseBaseName | Description | Type | Additional information |
---|---|---|---|
IsSuccessful | boolean |
None. |
|
ErrorMessage | 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.Transportation.Models"> <ErrorMessage>sample string 2</ErrorMessage> <IsSuccessful>true</IsSuccessful> </ResponseBase>