diff --git a/chats-out.html b/chats-out.html index 652f77a..4763a2f 100644 --- a/chats-out.html +++ b/chats-out.html @@ -5,7 +5,7 @@ defaults: { name: {value:"Chats Out"}, whatsappLink: {value:"whatsapp-web", type:'whatsappLink'}, - number: {value: ""} + recipient: {value:"", type:'number-recipient', required:false} }, outputs:0, inputs:1, @@ -27,17 +27,14 @@
Don't forget to mention international dialing code befor your number. - Number must be in format like +11 99999 99999 without any space.
-OR
-Leave the Number blank here and provide the number along with msg.paylod - at `msg.toNumber` with international code.
-To send message on multiple contacts an Arrar of number can be passed - on `msg.toNumber` like `msg.toNumber = ["+1199999999", "+12990000099", "+1311111111"].
+Recipient: Select a reusable Number Recipient configuration (optional).
+Override at runtime: Provide msg.toNumber to override the configured recipient.
Number format: +11 99999 99999 (international dialing code, no spaces).
+For multiple contacts, pass an array: msg.toNumber = ["+1199999999", "+12990000099"]
Group chat IDs are numbers given to each chats in whatsapp.
- - For every message recived from whatsapp-chats-in Node,
- Chat ID may be read at msg.chatID.
- Or
- - Chat ID of group can also be recive from whatsapp-admin Node,
- whenever the new group joined, Admin Node will notifiy the same.
-
Recipient: Select a reusable Group Recipient configuration (optional).
+Override at runtime: Provide msg.toNumber to override the configured recipient.
Group IDs are in format NUMBER-TIMESTAMP (e.g., 1234567890-1234567890).
+Find group IDs from msg.chatID in chats-in node or from the admin node when joining groups.