Not sure if this is specific to my phone but I’m unable to send notification which includes picture and actions at the same time. Separately everything works fine but including image parameter into the data will remove actions in the notifications.
When I send the following to “notify.mobile_app_mi_9t_pro”, I will only get message and picture and no action
message: 'test'
data:
image: 'https://github.com/home-assistant/home-assistant-assets/blob/master/logo-round-192x192.png?raw=true'
actions:
- action: URI
title: Go To Printer Tab
uri: "/lovelace/3d-print"
But when I remove image line I will get the action
message: 'test'
data:
actions:
- action: URI
title: Go To Printer Tab
uri: "/lovelace/3d-print"
Am I missing something?