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": "5785bdb3-17ce-4ef3-942e-2588789e83d7",
"vcrId": "d8d13fb1-3e2c-43d8-8a8c-a72d037ae09c",
"vehicleId": "62cf0bbc-e757-4c34-bd63-c72f65a9e6e9",
"mileage": 4,
"delivered": "2026-02-04T03:44:38.4056342+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-02-04T03:44:38.4056342+00:00</DeliveryDate> <Mileage>4</Mileage> <OrderId>5785bdb3-17ce-4ef3-942e-2588789e83d7</OrderId> <VCRId>d8d13fb1-3e2c-43d8-8a8c-a72d037ae09c</VCRId> <VehicleId>62cf0bbc-e757-4c34-bd63-c72f65a9e6e9</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": "0113bee7-9e63-404a-abb2-77a50b267b48",
"deliveredProcessId": "8bc708fc-79d3-44bd-80ec-24cc5b2cc233",
"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>8bc708fc-79d3-44bd-80ec-24cc5b2cc233</DeliveredProcessId> <OrderId>0113bee7-9e63-404a-abb2-77a50b267b48</OrderId> </DeliveryOrderApiResponse>