Issue with iOS Actionable Notifications not working

I have an automation where when I get a call on my home line, it sends me a notification of the caller’s details. I’m trying to modify this to be an actionable notification where I can then just push a button and then call that number. However, what is happening is that I get no notification at all.

The code for just displaying the information is

action: notify.caller_id_notify_group
metadata: {}
data:
  message: >-
    Incoming call from {{
    state_attr('sensor.modem_callerid_55ff3d54501b4d361c7abf6327d7405d',
    'cid_name') }} at {{
    states_attr('sensor.modem_callerid_55ff3d54501b4d361c7abf6327d7405d',
    'cid_number') }}
  title: Caller ID

And the code that I’m trying to use is:

action: notify.caller_id_notify_group
metadata: {}
data:
  message: >-
    Incoming call from {{    
    state_attr('sensor.modem_callerid_55ff3d54501b4d361c7abf6327d7405d',    
    'cid_name') }} at {{    
    states_attr('sensor.modem_callerid_55ff3d54501b4d361c7abf6327d7405d',    
    'cid_number') }} 
  data:
    actions:
      - action: CALL
        title: >-
          Call {{
          state_attr('sensor.modem_callerid_55ff3d54501b4d361c7abf6327d7405d',
          'cid_name') }}
        uri: >-
          tel:{{
          state_attr('sensor.modem_callerid_55ff3d54501b4d361c7abf6327d7405d',
          'cid_number') }}

:
I’m sure that it’s something simple, but I haven’t been able to figure it out.All help is gratefully appreciated - and I wish I could just send a keg of beer to the one that solves this issue.

Bumping this to get some attention.

I’m still trying to get this working. Can anybody help out here please?

The code seems fine. Did you check the execution trace? Any errors? You can also see the actual parameters used for execution - maybe something strange is going on there.

Another thing, you can test it in the Developer Tools. The action: CALL part is optional as the action executes locally. But it should work regardless. E.g. this works for me:

action: notify.mobile_app_iphone_maciej
data:
  message: message text
  data:
    actions:
      - title: >- 
          Call {{ '555854444' }}
        uri: >-
          tel:{{ '555854444' }}

You have to long press the notification to see the action.