Wix powers millions of Indian business websites. WA.Expert connects Wix to WhatsApp — form submissions, Wix Store orders, Wix Bookings appointments, and contact enquiries all fire instant WhatsApp notifications. Two paths: no-code Wix Automations or Velo (Wix's JavaScript platform) for custom logic.
Wix has two integration paths for WhatsApp: (1) Wix Automations — the no-code visual builder built into Wix, and (2) Velo by Wix — Wix's JavaScript-based development platform where you write backend code that calls external APIs. Both are available without leaving the Wix platform.
| Method | Complexity | Best for |
|---|---|---|
| Wix Automations (no code) | ⭐ Easy — Wix dashboard only | Connect form, store, booking events to WhatsApp in 15 min. |
| Velo Backend HTTP Function | ⭐⭐ Medium — JavaScript knowledge | Full flexibility — call WA.Expert from any Wix event. |
| Wix Form + Zapier | ⭐ Easy — no code via Zapier | Connect any Wix form submission to WhatsApp via Zapier. |
Wix Editor → Developer Tools → Turn on Velo. This enables the code panel.
In the Files panel: Backend → New .jsw file (e.g., waExpert.jsw). This creates a server-side module.
Use Velo's fetch API to call WA.Expert: import {fetch} from "wix-fetch". Create an async function that POSTs to WA.Expert API with the phone and template.
In page code or Wix Automations code: import {sendWhatsApp} from "backend/waExpert.jsw". Call on form submit: $w("#myForm").onWixFormSubmit(async (e) => { await sendWhatsApp(phone, "template", vars); }).
Always use Wix Secrets Manager to store API keys — never hardcode them in Velo code. Secrets are encrypted and accessible only from backend (.jsw) modules, not exposed to browsers.
Wix Automations gets you live in 15 minutes. Velo gives you full custom control. WA.Expert handles the WhatsApp delivery.