Update Special Order
Update Special Order
Path Parameters
department_token string required
uuid string required
application/json
Request Body required
isVehicleOnSite boolean
specialOrderStatus string
Possible values: [ALL
, SPECIAL_ORDER_INTIATED
, PARTS_ORDERED
, PARTS_PARTIALLY_ARRIVED
, READY_FOR_SERVICE
, READY_FOR_SERVICE_REQUEST
, READY_FOR_PARTS_PICKUP
, SERVICE_REQUEST_SENT
, PARTS_PICKUP_REQUEST_SENT
, VEHICLE_IN_SERVICE
, PARTS_PICKED_UP
, SERVICE_REMINDER_SENT
, PARTS_PICKUP_REMINDER_SENT
, SERVICE_FINAL_REMINDER_SENT
, PARTS_PICKUP_FINAL_REMINDER_SENT
, PART_ARRIVED
, CLOSED
]
Responses
- 200
OK
*/*
Schema
Example (from schema)
Schema
statusCode int32
errors object[]
warnings object[]
{
"statusCode": 0,
"errors": [
{
"errorCode": "string",
"errorDescription": "string",
"errorUID": "string"
}
],
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
]
}
PUT /department/:department_token/specialOrder/:uuid
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X PUT '/order/v2/department/:department_token/specialOrder/:uuid' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"isVehicleOnSite": true,
"specialOrderStatus": "ALL"
}'
python / requests
curl -L -X PUT '/order/v2/department/:department_token/specialOrder/:uuid' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"isVehicleOnSite": true,
"specialOrderStatus": "ALL"
}'
go / native
curl -L -X PUT '/order/v2/department/:department_token/specialOrder/:uuid' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"isVehicleOnSite": true,
"specialOrderStatus": "ALL"
}'
nodejs / axios
curl -L -X PUT '/order/v2/department/:department_token/specialOrder/:uuid' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"isVehicleOnSite": true,
"specialOrderStatus": "ALL"
}'
ruby / Net::HTTP
curl -L -X PUT '/order/v2/department/:department_token/specialOrder/:uuid' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"isVehicleOnSite": true,
"specialOrderStatus": "ALL"
}'
csharp / RestSharp
curl -L -X PUT '/order/v2/department/:department_token/specialOrder/:uuid' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"isVehicleOnSite": true,
"specialOrderStatus": "ALL"
}'
php / cURL
curl -L -X PUT '/order/v2/department/:department_token/specialOrder/:uuid' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"isVehicleOnSite": true,
"specialOrderStatus": "ALL"
}'
java / OkHttp
curl -L -X PUT '/order/v2/department/:department_token/specialOrder/:uuid' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"isVehicleOnSite": true,
"specialOrderStatus": "ALL"
}'
powershell / RestMethod
curl -L -X PUT '/order/v2/department/:department_token/specialOrder/:uuid' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"isVehicleOnSite": true,
"specialOrderStatus": "ALL"
}'