clickAction in companion keeps opening the app instead of website

Whenever my webhook gets triggered I created this action:

data:
  data:
    clickAction: 'http://URLTOOPEN'
  message: Nieuwe films beschikbaar op CouchPotato.
  title: CouchPotato
service: notify.mobile_app_iphone_11_van_bob

However when I click the notification it just opens the HA app and not the website in the action.
Anybody any ideas on this?

Try using developer tools to call your notify service and push my example below to your phone, after you update the URL. This works for me and easy to add in Node-Red.

{ 
  "message": "Nieuwe films beschikbaar op CouchPotato.",
  "title": "CouchPotato",
  "data": {
    "clickAction": "https://www.google.com"
    }
}

Unfortunately this still opens the app when I click the notification on my iPhone 11.
Seems that the clickAction is not working somehow.

1 Like

I’m also having this problem. clickAction does absolutely nothing for me and never did, even using smoke.007’s example data.

That’s because clickAction is for Anrdoid devices. You have to use url for iOS devices. Introduction | Home Assistant Companion Docs

1 Like