I setup a actionable notification for when someone pushes the door bell. Got that working perfect with a camera stream of my front door.
Now I would like to do one for when my Alarm system is disarmed. So I copied the door bell one pasted and changed all needed entities and messages. It all works but I get the same message as the door bell automation. “Door Bell Pushed” instead of “Alarm Disarmed” underneath the camera stream.
What could I be missing?
ios:
push:
categories:
- name: Door Bell
identifier: 'camera'
actions:
- identifier: 'DOOR_BELL'
title: 'Door Bell Pushed'
destructive: 'false'
- name: Alarm Disarmed
identifier: 'alarmdisarmed'
actions:
- identifier: 'ALARM_DISARMED'
title: 'Alarm Disarmed'
destructive: 'false'
automation:
- alias: Camera actionable notification
id: cameraactionablenotification1
initial_state: true
trigger:
platform: state
entity_id: input_boolean.door_bell_pushed
action:
service: notify.mobile_app_dave_iphone8
data:
title: ALERT
message: Someone is at the Front Door
data:
attachment:
content-type: jpeg
push:
category: camera
entity_id: camera.front_door
- alias: Alarm disarmed actionable notification
id: alarmdisarmedactionablenotification
initial_state: true
trigger:
platform: state
entity_id: input_boolean.test_notify
action:
service: notify.mobile_app_dave_iphone8
data:
title: ALERT
message: Alarm has been disarmed
data:
attachment:
content-type: jpeg
push:
category: camera
entity_id: camera.great_room