I’ve read through all of the posts and examples on how to get iOS actionable notifications working. The code below is what I’ve taken from previous posts and modified to fit my specific environment.
I do see a notification, however it is not actionable (yes, I’ve force-pressed on it). I have also updated my “push categories” within the HA iOS app.
There seems to be different recommendations on UPPER_CASE vs. lower_case and single vs. double quotes. Any help would be appreciated.
ios:
push:
categories:
- name: garage1
identifier: 'garage1'
actions:
- identifier: 'CLOSE_JANIS'
title: 'Close Garage Door'
activationMode: 'background'
authenticationRequired: true
destructive: true
behavior: 'default'
automation:
- alias: iOS app notification garage opened #creates the action button
initial_state: True
trigger:
platform: state
entity_id: cover.garage_door
from: 'closed'
to: 'open'
action:
service: notify.ios_my_device
data:
message: "Garage door opened" #customizable
data:
push:
category: "garage1"