GET api/General/OrderManage/GetNewDtlsIfCancelOrderByDeliveryAgent?OrderID={OrderID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
DeliveryRequestReframedViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| DeliveryAgentID | string |
None. |
|
| OrderID | string |
None. |
|
| PickupFee | decimal number |
None. |
|
| DeliveryFee | decimal number |
None. |
|
| PickupDistance | decimal number |
None. |
|
| DeliveryDistance | decimal number |
None. |
|
| TotalFee | decimal number |
None. |
|
| TotalDistance | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"DeliveryAgentID": "sample string 1",
"OrderID": "sample string 2",
"PickupFee": 3.0,
"DeliveryFee": 4.0,
"PickupDistance": 5.1,
"DeliveryDistance": 6.1,
"TotalFee": 7.0,
"TotalDistance": 8.1
}
application/xml, text/xml
Sample:
<DeliveryRequestReframedViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.CustomModels"> <DeliveryAgentID>sample string 1</DeliveryAgentID> <DeliveryDistance>6.1</DeliveryDistance> <DeliveryFee>4</DeliveryFee> <OrderID>sample string 2</OrderID> <PickupDistance>5.1</PickupDistance> <PickupFee>3</PickupFee> <TotalDistance>8.1</TotalDistance> <TotalFee>7</TotalFee> </DeliveryRequestReframedViewModel>