Alert Notifications not working iOS

Notifcations to my iOS device don’t seem to be going through with alerts but work just fine with my normal automations.

I get this error code when the alert component tries to send a notification;

Unable to find service notify/notify.ios_params_iphone

This is my alert config;

alert:
  garage_door:
    name: Garage is open
    entity_id: cover.garage_door
    state: 'open'
    repeat: 10
    can_acknowledge: True
    skip_first: True
    notifiers:
      - notify.ios_params_iphone

ever figure it out?

Yep, turns out when using alerts you dont need the notify. part of the entity id. So instead it’s just this;

notifiers:
      - ios_params_iphone
1 Like