Push up notification for all phones

Hi
is it possible to send a notification to all phones at HA, by making them a group or something? not sending each and every one separately

1 Like

this works for me
Notifications - Home Assistant (home-assistant.io)

this is sending one by one I want to send in one automation to all phones at once, with out the need to add each phone to the automation

There’s another link in the page vingerha linked that leads you to the provided notification integrations. Depends on what your idea is. SMS, email, HA app, other?

You can create a group with the phones in it and send a notification to all like this

action:
  - service: notify.all_phones
    data: {}

In the notify configuration:

- platform: group
  name: all_phones
  services: 
     - service: mobile_app_phone_1
     - service: mobile_app_phone_2

5 Likes

Just don’t add any phones to the integration. Specify a message but no target and the notification reaches all devices.

1 Like

isn’t that possible with helpers - groups ?

can’t do that - it doesn’t work with Developer Tools - services

What I can see from the interface is that you can create all kinds of groups but not notify groups

If this solves your question, can you mark it as solution? This may help others with for the same question

1 Like

Works for all devices.

service: notify.notify
data:
  message: The garage door has been open for 10 minutes.
  title: Your Garage Door Friend

Thank you. Did you tested it? For some reason it’s show me error, notify.all_phones service doesn’t exist.