Hello,
I was able to setup a notify service to send notifications to my phone and that is working great. Hoewever i am not able to setup the notifications to come as critical. Can someone help me in the right direction? Thank you in advance!
Hello,
I was able to setup a notify service to send notifications to my phone and that is working great. Hoewever i am not able to setup the notifications to come as critical. Can someone help me in the right direction? Thank you in advance!
Copy paste the json you have in the call service node and we can help you
Yes ofcourse,
This is what i have now wich is not working it just send a normal notification.
{
"message": "Dit zijn test berichten vanuit HA",
"title": "Test",
"data": {
"sound": "",
"name": "default",
"critical": 1,
"volume": 1
}
}
If this is the part you are looking for:
Critical notifications | Home Assistant Companion Docs (home-assistant.io)
Then it seems you are missing some steps.
Sound is supposed to be inside push, and be an array/list.
{
"message": "Dit zijn test berichten vanuit HA",
"title": "Test",
"data": {
"push":{
"sound": {
"name": "default",
"critical": 1,
"volume": 1
}
}
}
}
Perhaps…
Mate you are a lifesaver! thank you for your rapid response and help!