I am trying to send a picture to the Android notification from Node Red.
The notification works in general, but any content I want to add in the message does not get sent. the message title and data string is sent, just not the picture or live camera entity.
Is there a setting I am missing?
This is my simple test flow:
[{"id":"40cdf0ec47c1c102","type":"tab","label":"Flow 2","disabled":false,"info":"","env":[]},{"id":"5d60bd1f594cf88e","type":"inject","z":"40cdf0ec47c1c102","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":"0.1","topic":"","payload":"","payloadType":"date","x":260,"y":220,"wires":[["6b930711fde1d794","edc68da62dbbc0f5"]]},{"id":"edc68da62dbbc0f5","type":"api-call-service","z":"40cdf0ec47c1c102","name":"Notify Phone","server":"6119efaf.04ac5","version":5,"debugenabled":false,"domain":"notify","service":"mobile_app_haz_galaxy_fold_3","areaId":[],"deviceId":[],"entityId":[],"data":"{\"title\":\"Car\",\"message\":\"Car Detected\",\"data\":{\"entity_id\":\"camera.camera_back_patio_house\"}}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":570,"y":240,"wires":[[]]},{"id":"6b930711fde1d794","type":"api-call-service","z":"40cdf0ec47c1c102","name":"Notify Phone","server":"6119efaf.04ac5","version":5,"debugenabled":false,"domain":"notify","service":"mobile_app_haz_galaxy_fold_3","areaId":[],"deviceId":[],"entityId":[],"data":"{\"title\":\"Car\",\"message\":\"Car Detected\",\"data\":{\"image\":\"/media/local/car_cropped.jpg\"}}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":570,"y":300,"wires":[[]]},{"id":"6119efaf.04ac5","type":"server","name":"Home Assistant","version":5,"addon":true,"rejectUnauthorizedCerts":true,"ha_boolean":"y|yes|true|on|home|open","connectionDelay":true,"cacheJson":true,"heartbeat":false,"heartbeatInterval":30,"areaSelector":"friendlyName","deviceSelector":"friendlyName","entitySelector":"friendlyName","statusSeparator":"at: ","statusYear":"hidden","statusMonth":"short","statusDay":"numeric","statusHourCycle":"h23","statusTimeFormat":"h:m","enableGlobalContextStore":true}]
I get a notification on my phone saying Car and a Car Detected. Nothing else. No picture or live feed.
I have access to the media folder where the picture is saved. I created the picture from Node Red. The picture exists. The camera is also accessed through Node Red in a different flow.
So from what I can tell, it should work. Any thoughts?