Hello AppSheet Experts,
I am trying to integrate a WhatsApp Bot using the CallMeBot API inside my AppSheet application. My goal is:
Whenever a user submits or saves a form, an automatic WhatsApp message should be sent to the user with the form details.
Hello @Jogarao_seri,
Welcome to the community!! I hope the below post is helpful with your implementation process!
Thank you!
Hey,
Hope you’re keeping well.
In AppSheet, you can trigger an external API like CallMeBot via a Webhook action tied to a form’s Form Saved event. Set up a Bot in Automation > Bots with an Event that runs when a row is added or updated, and an Action that uses a Webhook to call the CallMeBot API URL with your form fields mapped into the payload. Make sure the CallMeBot endpoint is publicly accessible and that you include the required authentication token in the webhook body or URL parameters. If your API call needs to be proxied or secured, you can host a lightweight Cloud Function or Cloud Run service on Google Cloud to forward the request from AppSheet to WhatsApp.
Thanks and regards,
Taz
Nope, the Form Saved event has no role in this workflow. Otherwise, your advice is solid.