Actionable notifications in IOS 13 Beta

Has anyone gotten actionable inputs to work in IOS 13 Beta?

I’m just starting out with the IOS integration, and this is my first attempt, more or less directly cut and pasted from the documentation:

ios:
  push:
    categories:
      - name: Gate
        identifier: 'gate'
        actions:
          - identifier: 'OPEN_GATE'
            title: 'Open gate'
            activationMode: 'background'
            authenticationRequired: false
            destructive: false
            behaviour: 'default'
          - identifier: 'IGNORE_GATE'
            title: 'Leave closed'
            activationMode: 'background'
            authenticationRequired: false
            destructive: true
            behaviour: 'default'

When I fire this in an automation:

  action:
    service: notify.ios_ragnars_iphone_x
    data:
      message: "Approaching home. Open gate?"
      data:
        push:
          badge: 1
          category: "gate"

the only thing showing up on my iPhone home screen is the “notification” part, the ‘actionable’ part is missing:

Pressing the notification opens the HA companion app, but nothing further happens.

I started out with this after I upgraded my phone to IOS 13, so I can’t really tell if this should have worked in IOS 12 or not.

I’m using the latest stable version of the companion app (1.5), and I have given it every imaginable notification permission in IOS.

Regards,
Ragnar

Solved:

I just found out by coincidence that I needed to long press on the notification for the action buttons to appear.

1 Like