I was wondering if there is a way to send Whatsapp texts when user adds in a new input to appsheet.
For example,
User A key information of person B (information such as name, phone number etc). When the input is added to appsheet, person B will then receive a text stating that his details has been added.
I have concatenated the whatsapp link and I am aware that I can create a workflow to excess to Whatsapp. However, user will have to manually click on the “send” button in the app itself instead of having the text to be sent automatically.
Hi @Laura_Hong yes you are right. You have to manually click “Send” in WhatsApp.
There are methods to do this automatically, but it requires some work
[WhatsApp for Communication](https://community.appsheet.com/t/whatsapp-for-communication/29810/21) Tips & Tricks ?
There seem to be some methods to automatically send WhatsApp messages. Maybe someone has the time or the knowledge to test it Twilio Remember: AppSheet already has a Twilio integration. [Getting Started with the Twilio API for WhatsApp] Zapier & Picky Assist [Zapier Integration for WhatsApp & SMS Through Picky Assist] IFTTT & CallMeBot Waboxapp & Wyzebulb [How to send Whatsapp message using Waboxapp | Wyzebulb | The best automation …
CallMeBot web API offer a REST API to send WhatsApp messages to users. It is very simple to setup and you can call to an HTTP Webhook task from AppSheet Flow.
Example:
- Create a Custom Bot
- Choose an Event to trigger the bot
- Create a Custom Step
- In the Task to Run, Select “Send Notification”.
- Select “Call a WebHook”
- Fill these fields:
> URL:https://api.callmebot.com/whatsapp.php?phone=[your phone number]&text=[Text Message]&apikey=[your apikey] (check callmebot webpage to get the apikey)> HTTP Verb: POST> HTTP Content Type: JSON> Body: {}> >
That’s all.
Now every time that the “event” occurs, you will receive a WhatsApp notification into your mobile phone.
Update: I created step-by-step instructions to send free WhatsApp messages from AppSheet: Whatsapp Messages from AppSheet - CallMeBot API