Hi Guys,
I am new to HA and I am struggling integrating pushover notifications in a AppDaemon script.
My configuration.yaml looks like this:
notify:
- name: phone
platform: pushover
api_key: !secret api_key
user_key: !secret user_key
The call in my AppDaemon script is:
self.call_service("notify/phone", title='bla bla', message='bla bla')
And the script fails with this in the log:
appdaemon.exceptions.ServiceException: ('Unknown service (%s/%s/%s) in call_service from %s', 'default', 'notify', 'phone', 'my_app')
I feel there is a silly mistake somewhere; can anyone help me with this?
Thanks!