POST api/OrderStage/SetOrderDelivered
Request Information
URI Parameters
None.
Body Parameters
DeliveryOrderApiRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| orderId | globally unique identifier |
None. |
|
| vcrId | globally unique identifier |
None. |
|
| vehicleId | globally unique identifier |
None. |
|
| mileage | integer |
None. |
|
| delivered | date |
None. |
|
| user | string |
None. |
|
| hasError | boolean |
None. |
|
| error | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"orderId": "9053a77c-c4fe-453f-a9c2-9ef659d55979",
"vcrId": "9355da00-ed44-4bf5-8f72-2876cb544f04",
"vehicleId": "707a9e6c-7d16-40a6-a872-d31a46e11a96",
"mileage": 4,
"delivered": "2026-05-13T18:54:09.1379007+00:00",
"user": "sample string 6",
"hasError": true,
"error": "sample string 8"
}
application/xml, text/xml
Sample:
<DeliveryOrderApiRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PARS.WebApi.Proxy.Models"> <Error>sample string 8</Error> <HasError>true</HasError> <CRMUser>sample string 6</CRMUser> <DeliveryDate>2026-05-13T18:54:09.1379007+00:00</DeliveryDate> <Mileage>4</Mileage> <OrderId>9053a77c-c4fe-453f-a9c2-9ef659d55979</OrderId> <VCRId>9355da00-ed44-4bf5-8f72-2876cb544f04</VCRId> <VehicleId>707a9e6c-7d16-40a6-a872-d31a46e11a96</VehicleId> </DeliveryOrderApiRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
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": "15da112b-171d-4afa-b296-ae28acc2a995",
"deliveredProcessId": "cbf07588-fc20-4ebe-b267-ce7cb96f4f15",
"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>cbf07588-fc20-4ebe-b267-ce7cb96f4f15</DeliveredProcessId> <OrderId>15da112b-171d-4afa-b296-ae28acc2a995</OrderId> </DeliveryOrderApiResponse>