// 关闭夜航灯
{
"state": [
{
"desired": {
"air_transfer_enable": false
}
}
],
"device_sn": "xxxx"
}
//开启夜航灯
{
"state": [
{
"desired": {
"night_lights_state": 1
}
}
],
"device_sn": "xxxx"
}
curl --location --request POST '/openapi/v0.9/manage/api/v1/organizations//manage-devices/shadows' \
--header 'x-user-token;' \
--header 'X-Request-Id: {% mock '\''uuid'\'' %}' \
--header 'Content-Type: application/json' \
--data-raw '// 关闭夜航灯
{
"state": [
{
"desired": {
"air_transfer_enable": false
}
}
],
"device_sn": "xxxx"
}
//开启夜航灯
{
"state": [
{
"desired": {
"night_lights_state": 1
}
}
],
"device_sn": "xxxx"
}'
{
"code": 0,
"message": "OK",
"data": null
}