When attempting to send a test notification through developer tools, this is what I’m sending, which zero results:
service: notify.android_notify_group
data:
message: test message
title: test title
I have gone through the release notes of the past few releases and I am not seeing anything referencing notify groups changing at all. I’m sure it’s something stupid I’m missing, but hopefully, someone can help me out here.
I just tried your example and it also fails here. No notifications are shown on any of my Shield TVs. It works if I send it directly to each.
My problem is that if I try to send the same push notifications to each one in the same automation, then I only get it on my second shield ld the first shield is turned on.
Unfortunately not - already tried that because that is how it works with a single call:
nvalid config for [notify.group]: invalid slug notify.notify_shield1 (try notify_notify_shield1) for dictionary value @ data['services'][0]['service']. Got 'notify.notify_shield1'. (See ?, line ?).
EDIT: I don’t know why I did not try that in the first place, but what solved it was to remove all the “notify” stuff in front and simply type the actual name of the shield provided under the Notification service:
I am also getting this issue. I can notify a single device but cannot notify a group. To test, I created a simple automation with no triggers set to notify the group. To simplify, I put a single device in the group. It does not work.
Here is my group:
notify:
- name: all_phones
platform: group
services:
- service: mobile_app_xxx_phone
and here is my automation
id: '1656108067799'
alias: New Automation
description: ''
trigger: []
condition: []
action:
- service: notify.all_phones
data:
message: Test
mode: single
OK I figured it out but I think it’s a bug with home assistant. I renamed my phone from “sm_973f” to “xxx_phone” but the notify service is still called “notify.mobile_app_sm_973f”. I restarted HASS to no avail. I think this is a bug! I posted a bug report in a seperate thread
I just upgraded from an old HA core version to the most recent OS version. Now I have the same issue. I am creating a notification group in the yaml like
I hate to revive an old thread, but I ran into this as well and dit not find similar threads with my solution mentioned.
Here’s what solved it for me: You need to also remove the notify_ prefix. Don’t follow the suggestion of the “check configuration” button, it’s not correct, but still verifies the configuration as correct.
So, if you notify a single device like this:
service: notify.mobile_app_rene_fold4
data:
message: My message
Then your group should look like this:
notify:
- name: mobile_apps
platform: group
services:
- service: mobile_app_rene_fold4
So notify.mobile_app_rene_fold4 → strip notify. to mobile_app_rene_fold4
Calling the group:
service: notify.mobile_apps
data:
message: My message