Customers message you on WhatsApp. Your backend receives the conversation as webhooks and replies via API. Own the entire flow — no third-party inbox, no per-agent fees.
Most support tools charge per seat, per conversation, or both. WA Bridges is different: you own the WhatsApp layer, and you build the handling logic in your own backend — or plug it into any helpdesk you already use.
Receive every customer message as a webhook POST. Reply with a single API call. Run it on your infrastructure, with your data, at your scale.
I'm building a WhatsApp customer support channel using WA Bridges. My stack: [Express/Node.js — update this to your language/framework] My setup: - WA_API_KEY env var has my WA Bridges API key - WA_WEBHOOK_SECRET env var has my webhook signing secret - Bridge customer_ref is "support" I need: 1. A POST /webhook endpoint that receives inbound customer messages 2. Verify the webhook signature using the X-Wa-Signature header 3. Send an immediate acknowledgement back to the customer by name if possible 4. Store the message for later handling (console.log is fine for now) Please read the WA Bridges API docs and webhook reference before writing: https://wabridges.com/docs.txt Write production-quality code with error handling and signature verification.