GET api/OrderStage
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": "1abe4f99-677b-4cfb-ab18-6c1064b856b6",
"deliveredProcessId": "0e54fceb-8536-49f5-a6b2-392c947054b5",
"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>0e54fceb-8536-49f5-a6b2-392c947054b5</DeliveredProcessId> <OrderId>1abe4f99-677b-4cfb-ab18-6c1064b856b6</OrderId> </DeliveryOrderApiResponse>