Multi-Partner Solution — Embedded creation
Updated: Nov 4, 2025 Multi-Partner Solutions (MPS) allow Solution Partners and Tech Providers to jointly manage customer WhatsApp assets in order to provide WhatsApp messaging services to customers. If you are a Solution Partner, instead of using the app dashboard to create an MPS, you can create one using a snippet of JavaScript and an HTML button which you can embed somewhere on your website. Tech Providers who want to partner with you can use the button to grant your app permission to manage solutions for one or more of their apps, which you can then do using a series of API requests.Flow
Tech Providers who visit your website and click the embedded solution creation button will be asked to authenticate, and after doing so, will be presented with an interface that allows them to choose an existing app:
After choosing an app, they can review and confirm that they will be granting your app permission to manage their app’s Multi-Partner Solutions.
Once the Tech Provider dismisses the interface, a user access token will be generated and returned to flow, where you can capture it. You can then use the token in a series of API calls to get Tech Provider’s chosen app ID(s) and create and accept a solution.
Requirements
Facebook Login for Business must be configured on your app, with Valid Oauth Redirect URIs and Allowed Domains for the JavasScript SDK set. You should already have set these values when configuring Embedded Signup. Your app must undergo App Review and be approved for advanced access for the manage_app_solution permission.Embedded creation button
Step 1: Grant permission to app
Access the Meta Business Suite and use your system user to grant your app the manage_app_solution permission. Log into business.facebook.com. Use the business portfolio dropdown menu on the left to locate your business portfolio and click the gear icon (for settings). Navigate to Users > System Users. Click the system user who has business asset access on your app and WhatsApp Business Account. Click the Generate token button. Select your app. Set an expiration date for the token. Select the manage_app_solution permission. Generate a token. Use this token when accepting any Multi-Partner Solutions you create for your partners.Step 2: Add embedded button code
Add the following code to your website or portal, or wherever you plan on directing Tech Providers who will be working with you as part of an MPS. Be sure to replace<SOLUTION_PARTNER_APP_ID> with your app ID.
Solution creation
Step 1: Capture user token
Anytime a Tech Provider uses the embedded solution creation button and completes the flow, the flow returns anauthResponse object (response.authResponse) that has an accessToken property:
accessToken property value. This is the Tech Provider’s user access token, which you will need next.
Step 2: Get app details
Use the Tech Provider’s user access token and the GET /me/assigned_applications endpoint to get a list of app IDs that the Tech Provider selected when they completed the flow.Example request
Example response
Example response of a Tech Provider who selected a single app in the flow.id property value of each app for the next step.
Step 3: Create a solution for Tech Provider
Use the Tech Provider’s access token and an app ID from the previous step to make a request to the POST /<APP_ID>/whatsapp_business_solution endpoint. Repeat this request for each app ID returned in the previous step.Request Syntax
<SOLUTION_PARTNER_APP_ID> — Your app ID.
<SOLUTION_NAME> — Name to give the solution. This name will appear in the App Dashboard for both you and the Tech Provider, so the name should be unique and distinguishable from other solutions you or the Tech Provider may later initiate or accept.
Response
Upon success, the API will create a solution and associate your app and the Tech Provider’s app to it.solution_id value. This is the solution ID, which you will need in the next step.

