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": "01e72616-4f88-46b4-a55a-f6617a08b891",
"vcrId": "1fd0e3a0-076f-484f-a2cc-2e3010b07f63",
"vehicleId": "4b20825e-2546-45f7-8cc5-ab14c1d92a97",
"mileage": 4,
"delivered": "2026-08-13T19:19:00.2699193+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-08-13T19:19:00.2699193+00:00</DeliveryDate> <Mileage>4</Mileage> <OrderId>01e72616-4f88-46b4-a55a-f6617a08b891</OrderId> <VCRId>1fd0e3a0-076f-484f-a2cc-2e3010b07f63</VCRId> <VehicleId>4b20825e-2546-45f7-8cc5-ab14c1d92a97</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": "e4d38260-97be-45a2-844d-2fbb1b759b1e",
"deliveredProcessId": "6f84b88e-58b1-44cb-bff0-370f9f440b2c",
"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>6f84b88e-58b1-44cb-bff0-370f9f440b2c</DeliveredProcessId> <OrderId>e4d38260-97be-45a2-844d-2fbb1b759b1e</OrderId> </DeliveryOrderApiResponse>