Template
WhatsApp Message Launcher
How to integrate WhatsApp Click-Chat
Industry:
n/a
This app is intended to provide an example of how you can push data to WhatsApp using Click-Chat. There are several tables that make up this app, but they're all there simply to provide a framework from which I can explain how everything works.
----
Not only does this app show how you can send record-data to WhatsApp, but it also includes a deep-link that will allow the receiver of that message to click on the link... and be taken to the record that was sent to them. (You might not need that sort of functionality, but it's sure helpful to have when you need it!)
Loading...
Also see:
tablet mode & fullscreen mode
How we built this app
In reality the only thing you need to make Click-Chat to work, is an Action; the "Go to external website" action allows you to open external links, and Click-Chat works via URL manipulation (meaning it's all inside the URL). Inside this action, simply use a formula similar to this:
----
concatenate(
"https://wa.me/",
[Phone Number],
"?text=",
EncodeURL(concatenate(
....your text here...
)))