Hello
I’m trying to send camera snapshots via push notifications using AppDaemon. Here is the Action which works via yaml:
action:
- service: notify.ios_my_iphone
data:
message: Motion detected on driveway. Press to view feed.
data:
push:
category: camera
entity_id: camera.drive_way_camera
I’m struggling to get my head around how to replicate this in AppDaemon due to the nested properties. The message sends fine with:
self.call_service(“notify/ios_my_iphone”, message = “Motion detected on driveway”)
I’m just not sure how to add the data, push, and category parts.
Any help would be most appreciated.