giuseppecastaldo / ha-addons

Home Assistant Whatsapp Add-on
Apache License 2.0
49 stars 18 forks source link

node-red notification howto? #39

Closed youmax01 closed 5 months ago

youmax01 commented 11 months ago

Hi, i have notification working ok with atuomation option, but with node-red notification i can't make it work Can someone tell me how to write the sentence?, i this working?

{"clientId":"default","to":"391234567890@s.whatsapp.net","body","text":"test"} image

image

gerard33 commented 11 months ago

Not tested but I think the data should be like this.

{
   "clientId": "default",
   "to": "391234567890@s.whatsapp.net",
   "body": {
      "text": "test"
   }
}
youmax01 commented 11 months ago

Not tested but I think the data should be like this.

{
   "clientId": "default",
   "to": "391234567890@s.whatsapp.net",
   "body": {
      "text": "test"
   }
}

thanks Gerard, i will try!