ColorTemperature Trait Schema
action.devices.traits.ColorTemperature
- This trait belongs to any
devices that is able to set color temperature.
Device COMMANDS
Command
Parameters/Definition
action.devices.commands.ColorAbsolute
color
Object. Required. Will include RGB or Temperature and
optionally, a name. -
nameString. Color name (in English) as provided in the user's command. Not always available (for relative commands). -
temperatureInteger. Color temperature in Kelvin.
Sample EXECUTE Request
Adjust my light to soft white.{
"requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf",
"inputs": [{
"intent": "action.devices.EXECUTE",
"payload": {
"commands": [{
"devices": [{
"id": "123",
"customData": {
"fooValue": 74,
"barValue": true,
"bazValue": "sheepdip"
}
}],
"execution": [{
"command": "action.devices.commands.ColorAbsolute",
"params": {
"color": {
"name": "soft white",
"temperature": 2700
}
}
}]
}]
}
}]
}


