GET api/OrderStage/SetOrderDelivered1

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

DeliveryOrderApiResponse
NameDescriptionTypeAdditional 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": "118af654-31b7-4b06-97c7-92afeb1c3d27",
  "deliveredProcessId": "6687d16a-0f0d-4978-8dd0-c67199c46f2d",
  "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>6687d16a-0f0d-4978-8dd0-c67199c46f2d</DeliveredProcessId>
  <OrderId>118af654-31b7-4b06-97c7-92afeb1c3d27</OrderId>
</DeliveryOrderApiResponse>