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": "f618b25d-43b1-4fd6-8160-db401309f70b",
"deliveredProcessId": "743d6e72-d8d5-458f-9a26-7b98c418716f",
"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>743d6e72-d8d5-458f-9a26-7b98c418716f</DeliveredProcessId> <OrderId>f618b25d-43b1-4fd6-8160-db401309f70b</OrderId> </DeliveryOrderApiResponse>