- Choose a provider, then complete either Meta setup or Infobip setup to collect the routing identifier and credentials.
- Artemis channel configuration using those values, then copy the generated webhook URL.
- Webhook configuration with your provider: register the callback URL so inbound messages reach Artemis.
- The provider selector changes the whole setup: It decides which credential fields the dialog shows and which webhook route you register. Credentials from one provider never work with another’s route, so pick the provider before you collect anything.
- Who owns the WhatsApp Business account differs by provider: On Meta Cloud API, you hold it directly and Meta issues a test sender in minutes. That’s why most projects start there. On Infobip, Infobip holds it and onboards the sender for you, which removes the Meta paperwork at the cost of a provisioning wait.
- The Meta test token expires within 24 hours: To test and not to run. See Create a permanent access token.
- Verification proves less than it appears to: A webhook that returns 2xx proves only that your provider reached the runtime. It says nothing about whether your outbound credentials work.
Prerequisites
- An account with your chosen Business Solution Provider: A Meta developer account, or an Infobip account.
- For production on either path, the business details Meta requires for verification. Both routes wait on Meta review, so start early.
- An HTTPS-reachable Artemis runtime, since Meta calls the callback URL during verification.
- Artemis project access with permission to open Deployments -> Channels, and a deployed agent in the environment you intend to bind.
Choose a provider first
Pick the provider before you collect anything, and keep the identifier, credentials, webhook route, and provider-side sender on that single path.
Each provider also has its own webhook route. Meta uses the generic WhatsApp route, while Infobip and Gupshup each add their provider slug to the URL. Copy the route that matches the provider you selected in Artemis rather than assuming one URL serves all three.
Work through the provider section that matches your choice, then rejoin the shared path at Artemis channel configuration.
Meta setup
Complete this section only if you selected Meta Cloud API. Everything here happens in Meta, before you open Artemis, and each screen depends on the one before it. Meta covers the same ground in its own words in the Cloud API get started guide.1
Register as a Meta developer
- Go to Meta for Developers and sign in with your Facebook account.
- Complete developer registration when Meta prompts you, confirming an email address and a phone number.
2
Create the app
- Open My Apps and select Create App.
- When Meta asks what the app does, choose the business messaging use case, or choose Other and then Business as the app type if Meta shows you that older flow.
- Enter an app name and a contact email, attach a Meta Business portfolio if you have one, and create the app.
3
Add the WhatsApp product
- On the App Dashboard, scroll the Add products to your app list to WhatsApp and select Set up. If you’ve navigated away from that screen, the left menu carries an Add product entry that returns you to the same list.
4
Find the Access Token and Phone Number ID
Go to WhatsApp -> API Setup in the left menu. This screen carries most of what Artemis needs.
- Select Generate access token and complete the prompt, then copy the token. Meta issues a fresh one each time you open this panel, and it expires within 24 hours.
- Below the From field, Meta shows the test business phone number, and directly beneath that, a numeric Phone Number ID. Copy the ID.
5
Find the App Secret
The App Secret lives outside the WhatsApp section, so the left menu is the only way to reach it.
- Go to App settings -> Basic.
- Select Show beside App secret.
- Re-enter your Facebook password when Meta asks, then copy the value.
6
Choose a Verify Token
Choose any secret string. Meta doesn’t issue this one, so you invent it and use the same value in two places: the Artemis connection, and the webhook configuration in Meta. A mismatch fails webhook verification.Treat it as a secret rather than a label, and store it where you can retrieve it, because Meta shows it back to you only while you edit the webhook.
7
Add a test recipient
While the app stays in development mode, Meta delivers only to numbers you register, so your own number receives nothing until you add it.
- Return to WhatsApp -> API Setup.
- Select the To field and choose Manage phone number list.
- Add your WhatsApp number, then enter the confirmation code Meta sends you in WhatsApp.
Infobip setup
Complete this section only if you selected Infobip. Infobip owns the WhatsApp Business account and the sender. You collect three things from the Infobip web interface instead of from Meta: the sender number, your account’s API base URL, and an API key.1
Get a WhatsApp sender
- Sign in to the Infobip web interface.
- Go to Channels and Numbers -> Channels -> WhatsApp -> Senders.
- Note the sender number. Artemis wants it as digits only, with no plus sign, spaces, or punctuation.
2
Find your API base URL
Infobip gives every account a personalized base URL in the form
xxxxx.api.infobip.com, which you’ll see on the homepage once you sign in. Infobip explains the scheme under base URL.This URL isn’t a credential. It routes your requests to the data center serving your account, so a wrong one degrades or fails the integration rather than exposing it. Enter it in Artemis with the https:// scheme.3
Create an API key
- Go to Developer Tools -> API Keys and create a key for this integration.
- Copy the key when Infobip displays it and store it in your secret manager.
Artemis channel configuration
Create the connection before you register the webhook with your provider. Provider callbacks can arrive as soon as you save the webhook, and the runtime has to resolve an inbound sender to a saved connection before it can authenticate the event.- Open Artemis and select the project.
- Go to Deployments -> Channels -> WhatsApp -> + New. The New WhatsApp Connection dialog opens.
-
Configure the fields that apply whichever provider you chose:
-
Configure the routing identifier and credential fields, which change with the provider:
- Meta Cloud API
- Infobip
- Select Create.
- Open the connection and copy the Webhook URL from the Overview tab. The URL carries the route for the provider you selected, so copy it rather than constructing it. If the dialog reports that the runtime URL is unavailable, configure Runtime first, then reopen the connection.
Webhook configuration with your provider
The webhook is what turns a one-way integration into a conversation. Until your provider has a callback URL, your agent can send but never receives.- Meta Cloud API
- Infobip
In your Meta app, go to WhatsApp -> Configuration in the left menu. The Webhook row sits at the top of this screen.
- Select Edit. Meta opens a dialog with two fields.
- Paste the Artemis Webhook URL into the callback URL field, and the same Verify Token you entered in Artemis into the verify token field.
- Select Verify and save. Meta immediately calls the URL with a challenge and expects your verify token back, so the dialog stays open with an error when the handshake fails. A dialog that closes means the URL verified.
- Below the webhook row, find the webhook fields list, select Manage, and subscribe to the messages field.
Validation checklist
Verify the connection
Artemis doesn’t synthesize provider callbacks, so a real WhatsApp message is the only way to confirm the integration works end to end.- From a WhatsApp account you registered as a test recipient, send the business sender a short message you can search for later. A distinctive string makes the message easy to find in session records.
- Check that the agent replies once, from the intended sender and the intended environment. Duplicate replies point to duplicate provider subscriptions, another automation on the same number, or repeated webhook delivery rather than an agent fault.
- If no reply arrives, open Sessions and search for the message you sent. A session that exists tells you the webhook works and the outbound path failed, while no session tells you nothing reached the runtime at all. The two need different fixes, so make this check before you change any configuration.
- If the agent sends buttons or lists, select a button and a list row and confirm the action returns to the same session. WhatsApp limits how many reply buttons a message carries and how long their labels run, so check that your authored content renders in WhatsApp rather than only in preview.
- Test only the message types your provider enables, then confirm the agent handles the downloaded attachment rather than only acknowledging it.
Create a permanent access token
This section applies to Meta Cloud API only. Infobip API keys don’t expire on a schedule, so rotate them on your own policy instead. The token on the API Setup page expires within 24 hours, which is enough to test and not enough to run. Replace it with a system user token, which lasts until you revoke it. Meta explains how the token types differ under access tokens. This work happens in Meta Business Suite rather than the App Dashboard, and it needs a Meta Business admin.1
Create a system user
- Open Meta Business Suite and select your business portfolio from the dropdown at the top of the page.
- Select its settings icon to open Business settings.
- Go to Users -> System users and select Add.
- Name the system user, set its role to Admin, and create it.
2
Assign the app and the WhatsApp account
- Select the system user you created and select Assign assets.
- Assign your app and your WhatsApp Business account, granting full control on each.
- Reload the page and confirm both show as assigned before you continue, because a token generated before the assets attach can’t reach them.
3
Generate and store the token
- Select Generate token, choose your app, and set the expiration to never.
- Select the
whatsapp_business_messagingpermission so the token can send and receive messages, andwhatsapp_business_managementso it can manage templates and account settings. - Generate the token and copy it straight into your secret manager, because Meta displays it once and never again.
- Update the Access Token on the Artemis connection from the Credentials tab.
Move to production
A test sender covers development and nothing else. Who does the production paperwork depends on your provider. On Meta Cloud API, you complete business verification, add a payment method, register a business phone number in WhatsApp Manager, and get your display name approved. You do all of this from Meta Business Suite. On Infobip, Infobip runs the sender registration and verification for you, and you supply the business details it asks for. Either way the work waits on Meta review, so start it well ahead of your launch date. Two WhatsApp rules shape what your agent can say, whichever provider carries the traffic: The customer service window. After a customer messages you, you can reply freely for 24 hours. Outside that window, an outbound message needs an approved template, so an agent that reaches out first needs templates approved before it can start a conversation at all. Template approval is its own review, and a rejected template blocks the conversation you wrote it for. Separate senders per environment. Use different senders, credentials, webhooks, and connections for development and production. Sharing a sender means test traffic reaches the same conversation history as customer traffic.Manage the channel connection
Opening a WhatsApp connection from Deployments -> Channels shows four tabs. The header carries the connection name, its environment, its status, and a delete control.- Overview
- Credentials
- Configuration
- Deployment
Connection Summary records what the connection is and when it changed.
Setup Instructions below the summary carries the values you need on the provider side, each with a copy control.
Key values reference
Each value sits on a different provider screen, and two of them look alike enough to swap by accident. Use the table for your provider to collect everything in one pass.- Meta Cloud API
- Infobip
Troubleshoot connection issues
Provider reference
Use these pages when you need detail beyond what this article covers.- Meta Cloud API
- Infobip