I’m trying to toggle the microphone with an API call by setting microphoneEnabled
to false or true but it doesn't seem to be having any effect.
It's listed in the docs but can't seem to get it to work.
Here's an example call I'm making
curl --request POST \
--url https://api.ecobee.com/1/thermostat \
--header 'Authorization: Bearer eyJ......' \
--header 'Content-Type: application/json' \
--data '{
"selection": {
"selectionType": "registered",
"selectionMatch": ""
},
"thermostat": {
"audio": {
"microphoneEnabled": true
},
"settings": {
"autoAway": true,
"followMeComfort": true
}
}
}'
Any tips would be most appreciated!