GET api/OrderStage/SetOrderDelivered1
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
DeliveryOrderApiResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| orderId | globally unique identifier |
None. |
|
| deliveredProcessId | globally unique identifier |
None. |
|
| hasError | boolean |
None. |
|
| error | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"orderId": "265e5c0f-c0a3-4aa9-9e97-129a58d76e37",
"deliveredProcessId": "bae1f4e2-928f-436a-b38d-3066fd1718bd",
"hasError": true,
"error": "sample string 4"
}
application/xml, text/xml
Sample:
<DeliveryOrderApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PARS.WebApi.Proxy.Models"> <Error>sample string 4</Error> <HasError>true</HasError> <DeliveredProcessId>bae1f4e2-928f-436a-b38d-3066fd1718bd</DeliveredProcessId> <OrderId>265e5c0f-c0a3-4aa9-9e97-129a58d76e37</OrderId> </DeliveryOrderApiResponse>