API Integration Manual for Daikin DKN Cloud Wi-Fi Adaptor
16
-
BODY:
(
JSON). Properties:
o
value
:
(Number) value representing a valid mode.
-
EXAMPLE:
-
PUT https://dkncloudna.com/api/v1/open/5cd51f1684c09013f6765d9c/AA:BB:CC:DD:EE:0D/mode
In case the value is not valid, the request will return the following error:
o
Response code: 400
o
Body:
{
"_id": "modeNotSupported",
"msg": "The thermostat doesn't support the specified mode."
}
3.2.4 Device
– Speed
Change the AC fan’s speed.
-
REQUEST:
-
PUT https://dkncloudna.com/api/v1/open/{{INSTALLTION_ID}}/{{MAC}}/speed
-
BODY:
(
JSON). Properties:
o
value
:
(Number) value representing a valid speed.
-
EXAMPLE:
-
PUT https://dkncloudna.com/api/v1/open/5cd51f1684c09013f6765d9c/AA:BB:CC:DD:EE:0D/speed
In case the speed value is not valid, the request returns the following error:
o
Response code: 400
o
Body:
{
"_id": "speedNotValid",
"msg": "Speed value not valid",
"data": {
"validValues": [
0,
2,
4,
6
]
}
}
A successful command for On/Off or Setpoint or Mode change or Fan speed change shall get a
response with current condition of the unit:
{
"mode": 2,
"power": true,
"setpoint": 65,
"temperature": 79,
"speed": 2,
"isConnected": true
}