iOS Actionable notifications HA 0.55.0

I just reinstalled HA on a fresh image of Raspbian Stretch, and ham having some trouble getting my actionable iOS notifications back up and running. I’ve been playing with the capitalization of the category identifier, in accordance to the breaking change introduced in 0.54.0, but no luck. I am sure I am missing something obvious, but couldn’t find anything in recent threads.

I am getting the notification without issue, including the subject and message. But I am no longer getting the action buttons.

Here is my current code. Anyone see anything that need correction?

iOS config

ios:
  push:
    categories:
      - name: Alarm
        identifier: 'alarm'
        actions:
          - identifier: 'ARM_ALARM_STAY'
            title: 'Arm Alarm to Stay'
            authenticationRequired: yes
          - identifier: 'ARM_ALARM_AWAY'
            title: 'Arm Alarm to Away'
            authenticationRequired: yes
            destructive: yes

automation

  trigger:
    - platform: time
      at: '22:00:00'
  condition:
    condition: state
    entity_id: alarm_control_panel.cpi_security
    state: 'disarmed'
  action:
    - service: notify.ios_mikegs_iphone_6s
      data_template:
        title: 'The Alarm has not been armed for the night'
        message: 'Do you want to arm it?'
        data:
          push:
            category: 'alarm'

Did you update push setting in the iOS app?

1 Like

Ah geez… I knew it would be something stupid that I forgot! Thanks cveenman!