WhatsApp-Nachrichten aus HubSpot senden (2026)
Schritt-für-Schritt-Anleitung zur Integration von HubSpot CRM mit der WhatsApp Business API über WhatsTeam.
Vollständige Anleitung zur Integration von Salesforce mit der WhatsApp Business API über WhatsTeam.
Ihr Vertriebsteam arbeitet in Salesforce. Ihre Kunden kommunizieren ueber WhatsApp. Diese beiden Plattformen zu verbinden kann die Art und Weise transformieren, wie Sie Leads pflegen, Deals abschliessen und Kunden nach dem Kauf betreuen. Doch die native WhatsApp-Option von Salesforce -- Digital Engagement -- ist mit hohen Kosten verbunden, die sie fuer die meisten Teams unerschwinglich machen.
Dieser Leitfaden zeigt Ihnen praktische Wege, WhatsApp-Nachrichten direkt aus Salesforce zu senden -- mit WhatsTeam, der offiziellen WhatsApp Business API und Automatisierungstools, die Sie wahrscheinlich bereits nutzen. Keine inoffiziellen Loesungen, keine QR-Code-Workarounds -- nur produktionsreife Integrationen auf der offiziellen Infrastruktur von Meta.
WhatsApp has over 2 billion active users and open rates above 90%. Compared to email's 20-25% open rate, that is a significant difference. Connecting it to Salesforce means your team can:
The question is not whether to connect these platforms. It is how to do it without overpaying or relying on fragile workarounds.
Salesforce offers WhatsApp messaging through its Digital Engagement add-on. Here is how it stacks up against WhatsTeam.
| Feature | Salesforce Digital Engagement | WhatsTeam |
|---|---|---|
| Monthly cost | $75/user/month (on top of Service Cloud) | From $29/month (Starter plan) |
| WhatsApp Business API | Yes (via Salesforce partnership) | Yes (official WABA) |
| Team Inbox | Limited to Service Console | Full Team Inbox with assignment, notes, tags |
| AI Chatbots | Einstein Bots (additional cost) | Built-in AI chatbots |
| Broadcast Campaigns | Not included | Included in all plans |
| Product Catalog | Not available | Native WhatsApp catalog support |
| Salesforce Integration | Native | Via Zapier, Make, or REST API |
| Setup complexity | High (requires admin configuration) | Low (connect in minutes) |
For a team of 10 agents, Salesforce Digital Engagement adds $750/month on top of existing Salesforce licensing. WhatsTeam's Business plan at $69/month covers the entire team with more WhatsApp-specific features. See full pricing details.
There are three practical approaches to sending WhatsApp messages from Salesforce using WhatsTeam, ranging from zero-code to fully custom.
Best for teams that want a working integration in under 30 minutes without writing any code.
Prerequisites:
Step-by-step setup:
Connect WhatsTeam to Zapier. In your WhatsTeam dashboard, navigate to Integrations and generate an API key. In Zapier, search for WhatsTeam and authenticate with your API key.
Create a new Zap. Set the trigger app to Salesforce. Choose the event that should initiate a WhatsApp message -- for example, "New Lead" or "Updated Opportunity Stage."
Configure the Salesforce trigger. Authenticate your Salesforce account and select the object and fields you want to monitor. For lead nurturing, choose the Lead object and filter by status.
Add the WhatsTeam action. Select "Send WhatsApp Message" as the action. Map Salesforce fields to the message template:
Test and activate. Send a test message, verify it arrives, and turn the Zap on.
Example Zap configurations:
Make offers more complex workflow logic than Zapier, including branching, loops, and error handling.
Step-by-step setup:
Create a new scenario in Make. Add the Salesforce module as your trigger. Select "Watch Records" and choose the object type.
Add conditional routing. Use Make's router to branch based on Salesforce field values. For example, route Spanish-speaking leads to a Spanish template and English-speaking leads to an English template.
Add the HTTP module for WhatsTeam. Configure a POST request to the WhatsTeam API endpoint. Include your API key in the headers and map Salesforce fields to the request body.
Add error handling. Attach an error handler to retry failed messages or log them to a Google Sheet for manual follow-up.
Schedule and activate. Set the scenario to run at your preferred interval (every 5 minutes for near-real-time delivery).
Make's visual workflow builder is particularly useful when you need to send different messages based on lead source, territory, deal size, or language.
For engineering teams that want full control, WhatsTeam's REST API lets you trigger WhatsApp messages from Salesforce Apex code, Flow, or any middleware.
Apex class example:
hljs apexpublic class WhatsTeamMessaging { private static final String WHATSTEAM_API = 'https://api.whatsteam.com/v1/messages'; @future(callout=true) public static void sendWhatsAppMessage(String phone, String templateName, String params) { HttpRequest req = new HttpRequest(); req.setEndpoint(WHATSTEAM_API); req.setMethod('POST'); req.setHeader('Content-Type', 'application/json'); req.setHeader('Authorization', 'Bearer ' + WhatsTeam_Settings__c.getInstance().API_Key__c); Map<String, Object> body = new Map<String, Object>{ 'to' => phone, 'template' => templateName, 'parameters' => params }; req.setBody(JSON.serialize(body)); Http http = new Http(); HttpResponse res = http.send(req); if (res.getStatusCode() != 200) { System.debug('WhatsTeam API Error: ' + res.getBody()); } } }
Salesforce Flow integration:
sendWhatsAppMessage method.Key considerations for the API approach:
@future(callout=true) or Queueable Apex for asynchronous executionFor complete API documentation, visit the WhatsApp API reference.
When a new lead enters Salesforce from a web form, trade show, or ad campaign, time matters. A WhatsApp message sent within five minutes of capture has significantly higher engagement than an email sent in the same window.
Workflow:
This keeps your speed-to-lead metric sharp without adding manual work.
Keep prospects informed and engaged as deals progress through your pipeline.
Workflow:
Customers prefer getting support updates where they already communicate. Instead of sending case update emails that get buried in inboxes, deliver them on WhatsApp.
Workflow:
The relationship does not end at close. Automated post-sale sequences on WhatsApp drive onboarding completion, product adoption, and renewal rates.
Workflow:
These sequences run entirely on automation, touching the customer at the right moments without manual effort.
Use approved message templates. WhatsApp requires pre-approved templates for outbound messages outside the 24-hour conversation window. Design templates that are personalized but compliant with Meta's guidelines.
Respect opt-in requirements. Only send WhatsApp messages to contacts who have explicitly opted in. Store consent status in a custom Salesforce field and filter your automations accordingly.
Keep messages conversational. WhatsApp is a personal channel. Messages that read like corporate emails will get ignored or blocked. Write like a human, keep it brief, and include a clear next step.
Monitor delivery and read receipts. WhatsTeam's Analytics dashboard shows delivery rates, read rates, and response times. Use this data to optimize send times and template content.
Map the 24-hour window. After a customer messages you, you have a 24-hour window to reply with free-form messages. Outside that window, you must use approved templates. Design your automations around this constraint.
No. Salesforce Digital Engagement is one option, but it is expensive and limited. WhatsTeam connects to Salesforce through Zapier, Make, or a direct API integration, giving you full WhatsApp Business API capabilities at a fraction of the cost. Plans start at $29/month.
Yes. WhatsTeam uses the official WhatsApp Business API (WABA) provided by Meta. All messages go through Meta's approved infrastructure. There are no unofficial connectors, browser automation, or QR code workarounds involved.
You can trigger campaign messages based on Salesforce list views, reports, or data segments. Use Zapier or Make to watch a Salesforce report and send templated WhatsApp messages through WhatsTeam's Campaigns feature to each matching contact. Ensure all recipients have opted in.
Replies appear in your WhatsTeam Team Inbox, where agents can respond in real time. You can assign conversations to specific team members, add internal notes, and tag conversations for follow-up. If you have AI chatbots enabled, WhatsTeam can handle common questions automatically.
WhatsTeam supports multiple WhatsApp Business numbers under a single account. You can route messages from different Salesforce business units to different WhatsApp numbers by configuring separate Zaps or Make scenarios for each unit.
With the API integration, you can log WhatsApp conversations as Salesforce Activities or attach them to the relevant Lead, Contact, or Case record. Using Zapier or Make, you can create a reverse Zap that logs incoming WhatsApp messages as Salesforce tasks or notes.
Connecting Salesforce to WhatsApp through WhatsTeam takes minutes, not months. Whether you choose the no-code path with Zapier and Make or build a custom API integration, you get the full power of the WhatsApp Business API without the overhead of Salesforce Digital Engagement.
For a deeper look at the Salesforce connector, visit the Salesforce integration page.
Schritt-für-Schritt-Anleitung zur Integration von HubSpot CRM mit der WhatsApp Business API über WhatsTeam.
Wie Sie Claude, GPT und andere KI-Modelle über MCP mit WhatsApp verbinden.
Alles über WhatsApp-Nachrichtenvorlagen: Kategorien, Erstellung, Genehmigung und Beispiele.