Actionable Notifications (Garage)

I’m having a problem getting the action to show. The other one above it works fine. Activate and Deactivate alarm. I copied as I thought from there, but I cant get it to trigger the actionable text. I get the notification though.

Any help is massivly appreciated

  push:
    categories:
      - name: Alarm
        identifier: 'alarm'
        actions:
          - identifier: 'ACTIVATE_ALARM'
            title: 'Activate Alarm'
            activationMode: 'background'
            authenticationRequired: yes
            destructive: yes
            behavior: 'default'
          - identifier: 'DE-ACTIVATE_ALARM'
            title: 'De-Activate Alarm'
            activationMode: 'background'
            authenticationRequired: yes
            destructive: yes
            behavior: 'default'
      - name: garage_left_open_30_min
        identifier: 'garage_left_open_30'
        actions:
          - identifier: 'CLOSE_GARAGE'
            title: 'Close Garage'
            activationMode: 'background'
            destructive: yes
            behavior: 'default'

- id: garage_left_open
  alias: 'Garage Left Open'
  trigger:
    - platform: state
      entity_id: cover.garage_door
      to: 'open'
      for:
        minutes: 30
    - platform: event
      event_type: timer.finished
      event_data:
        entity_id: timer.garage_left_open
  condition:
    condition: state
    entity_id: cover.garage_door
    state: 'open'
  action:
    - service: timer.start
      entity_id: timer.garage_left_open
    - service: notify.notify
      data:
        title: 'Garage Left Open 30 Min'
        message: 'The Garage Door Has Been Open For 30 Min'
        data:
          push:
            badge: 0
            category: "garage_left_open_30"

- id: garage      
  alias: Garage
  trigger:
    platform: event
    event_type: ios.notification_action_fired
    event_data:
      actionName: CLOSE_GARAGE
  action:
    - service: cover.close_cover
      entity_id: cover.garage_door

Have you updated the push settings in the ios app?

Settings (gear icon) > Notification Settings .

Yes I Have

i heard apple may take a sec to update?

would this be my issue?

If I create a new actionable notification, save the config and restart. Then as soon as I do an ‘update push settings’ in the ios app they are ready to use.

I only had a quick look at your automations, there may still be an issue there. I’ll have a closer look tonight.

Having said all that you might be better off moving to the beta 2.0 app. The way this handles actionable notifications has been completely redesigned. Unfortunately there is no documentation on this and I have yet to try it. Though Robbie is recommending it, iOS device detection not working

There is TONS of documentation on 2.0 now, check it out here.

1 Like

At first I thought you were joking because of the blank ‘welcome’ page but then I clicked through the banner menu. Looks like I have a bit of reading to do.