Skip to content

device restart

Users can restart device through this api, which can be sent in batches

API info

Url: /web_api/v1/dev_manage/device_reboot

Method: POST

Content-Type:application/json

Request parameter

fieldtyperequireddesc
vehicleNosarray(string)YesPlate No. List

Response Data (type:array)

List of failed license plates

Example

Request example

json
http://localhost:8080/web_api/v1/dev_manage/device_reboot 
{
    "vehicleNos":["13000000007","1300212000"]
}
http://localhost:8080/web_api/v1/dev_manage/device_reboot 
{
    "vehicleNos":["13000000007","1300212000"]
}

Response example

json
{
    "hdr":{
        "code":200,
        "message":"success" //Delivered successfully
    },
    "data":["1300212000"] //A list of failed Plate No.
}
{
    "hdr":{
        "code":200,
        "message":"success" //Delivered successfully
    },
    "data":["1300212000"] //A list of failed Plate No.
}