Executing a uimapi call with the following properties does not update the alarm, nor does it error:
/uimapi/alarms/{alarmid}/set_custom_property
{
"properties": [
{
"key": "custom_4",
"value": "my update"
}
]
}
Version: 20.4, 23.4
Component: uimapi
Issue the command without the underscore in the field name:
{
"properties": [
{
"key": "custom4",
"value": "my update"
}
]
}