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": "d324f38a-6fcb-4cb9-a731-b6e99aa80a4c",
"deliveredProcessId": "803e5b4a-2bbb-43f4-b352-84d7605e4353",
"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>803e5b4a-2bbb-43f4-b352-84d7605e4353</DeliveredProcessId> <OrderId>d324f38a-6fcb-4cb9-a731-b6e99aa80a4c</OrderId> </DeliveryOrderApiResponse>