Skip to main content
Beta Messaging connector. WhatsApp is a DM-only connector: you connect a WhatsApp Business phone number through Meta’s Embedded Signup, then use our unified inbox to receive and reply to the messages that number gets. There are no posts, comments, reviews, or mentions.

At a glance

Capabilities

Requesting access

WhatsApp is in beta. Your account must have whatsapp in its allowed_platforms list before you can connect a number. Request access from the dashboard, or contact us. Once we approve the request, you can connect a WhatsApp Business number.

What you need

  • A WhatsApp Business phone number that is not currently registered on the consumer WhatsApp or WhatsApp Business apps. During Embedded Signup you can select an existing number or create one.
  • Admin access to a Meta Business (business.facebook.com).
You do not need to submit your own Meta App Review or complete business verification to connect. We are the Tech Provider, so the app review and provider-side setup are handled on our side. The person connecting signs in with their Meta Business account, picks their WhatsApp Business Account and phone number, and the number is connected.

Connecting

WhatsApp uses Meta’s Embedded Signup, a three-leg flow that you drive from your own backend and frontend with your API key. Your customer only ever interacts with Meta’s hosted popup; your API key stays server-side the whole time. (You can also connect from our dashboard, which runs this same flow for you.)

Leg 1: start the connection (your backend)

Response (HTTP 202):
The metadata is exactly what Meta’s JavaScript SDK needs to launch the popup. Pass state through to your frontend, hold onto it for leg 3.

Leg 2: launch the Meta popup (browser)

Load Facebook’s JavaScript SDK and call FB.login with the config_id and solution_id from leg 1:
As the customer completes the popup, Meta fires the WA_EMBEDDED_SIGNUP message event carrying their waba_id and phone_number_id. Capture the code and both IDs, and send them to your backend. See Meta’s Embedded Signup docs for the exact SDK and event wiring.

Leg 3: complete the connection (your backend)

We validate state against the one we issued to your API key, exchange the code for the customer’s token, store the account, and return HTTP 201 with the connected account. The number’s messages now flow into your inbox.

Registering your domain

The popup runs against our Meta app, and Meta’s Login-for-Business SDK enforces an allowlist of domains that are permitted to launch it. To run FB.login from your own domain (for example, app.yourcompany.com), we have to register that domain in our Meta app first, so contact us to add it. If you would rather not host the popup yourself, connect from our dashboard instead. It runs the flow on our domain and works for any customer without a per-domain step.

The 24-hour service window

WhatsApp only lets a business send free-form messages within 24 hours of the customer’s most recent message. Each new inbound message from that customer resets the 24-hour timer.
  • Inside the window: you can send a free-form text reply from the inbox.
  • Outside the window: free-form replies are rejected with whatsapp.window_closed. To reach the customer, send an approved message template with send-template (see Message templates below), which is allowed at any time.

Message templates

Templates are pre-approved messages you can send outside the 24-hour window (order updates, authentication codes, and the like). You create, manage, and send them entirely through the API, scoped to a connected account.

Create a template

A new template starts in PENDING; Meta reviews it and the status moves to APPROVED or REJECTED asynchronously. category is one of UTILITY, MARKETING, or AUTHENTICATION (marketing content in a UTILITY template is auto-rejected). Call POST /v1/platforms/whatsapp/templates/validate first to catch field-level problems before you submit.

Send a template

to is E.164 without the leading +. The template must already be APPROVED and language must match an approved variant. This send is allowed whether or not the 24-hour window is open, and the message is recorded in the inbox thread. Listing, editing, and deleting templates, plus phone-number management (request-code, verify-code, register, deregister, status) and the business profile, are also available. See the API reference for the full set of /v1/platforms/whatsapp endpoints and their schemas.

Receiving and replying

WhatsApp has no message-history API, so we build the inbox from inbound webhook events from connect time onward. There is no backfill of messages sent before you connected.

List DM conversations

Reply to a message

account_id is required. The reply is sent as plain text and only succeeds while the 24-hour service window is open.

Errors

See Errors for the full catalog.