Is there a way to send a message with telegram without a sound warning?
In domoticz it is possible to choose with or without sound.
Is there a way to send a message with telegram without a sound warning?
In domoticz it is possible to choose with or without sound.
Try setting
msg.payload.options.disable_notification = true;
I add that, but then i don't receive any message.
msg.payload.options.disable_notification = true;
{"chatId": xxxxx,
"type":"message",
"content":"{{payload}}\n{{topic}}"}
I guess you are using a template node to build the payload?
In which case it would be...
{
"chatId": xxxxx,
"type":"message",
"content":"{{payload}}\n{{topic}}",
"options": {
"disable_notification": true
}
}
Yes that was the solution!
Thanks for supporting a beginner
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.