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": "39729146-6ddf-4112-85c8-5644bafcbaf4",
"deliveredProcessId": "7e29eabe-55c0-43ae-b1d7-d846df1bff67",
"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>7e29eabe-55c0-43ae-b1d7-d846df1bff67</DeliveredProcessId> <OrderId>39729146-6ddf-4112-85c8-5644bafcbaf4</OrderId> </DeliveryOrderApiResponse>