How to forward notifications

I would like to forward notifications from home assistant to my Android phone. For example, if there is failed log-in notification. ( I can easily duplicate this one)

I can’t find the event that is triggered by this type of notification. From what I found it should be this.

  trigger:
  - platform: event
    event_type: call_service
    event_data:
      domain: persistent_notification

When I listen to the call_service event in developer tools and I trigger a failed log-in notification nothing is captured.

Welcome to HA! :slightly_smiling_face:

Me too!

Is there a way to do a wild card with events? The entity_id: persistent_notification.http_login is very specific. Is it possible to do something like persistent_notification.* where it will trigger on any entity_id containing persitent_notification?

The trigger

    trigger:
      - platform: event
        event_type: call_service
        event_data:
          domain: persistent_notification
          service: create

should work for most notifications.
Only for the http_login (maybe others, i don’t know) there seems to be no event created.