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": "6da35b4f-3da8-49e0-aa52-cdf61cb76f19",
"vcrId": "33e6e5ae-25fc-4a6e-87af-4a49b34e13b7",
"vehicleId": "c56ab688-b851-4ba1-bfd6-2c902b0cdf74",
"mileage": 4,
"delivered": "2026-03-25T10:53:32.373151+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-03-25T10:53:32.373151+00:00</DeliveryDate> <Mileage>4</Mileage> <OrderId>6da35b4f-3da8-49e0-aa52-cdf61cb76f19</OrderId> <VCRId>33e6e5ae-25fc-4a6e-87af-4a49b34e13b7</VCRId> <VehicleId>c56ab688-b851-4ba1-bfd6-2c902b0cdf74</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": "e4931031-a823-465e-a844-4456508b081c",
"deliveredProcessId": "5633380f-c71f-4214-9a9c-d55278cd69e6",
"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>5633380f-c71f-4214-9a9c-d55278cd69e6</DeliveredProcessId> <OrderId>e4931031-a823-465e-a844-4456508b081c</OrderId> </DeliveryOrderApiResponse>