The Conversions API enables advertisers to send web, app, and physical store events to Meta through a single endpoint rather than across multiple sources. This consolidation will simplify an advertiser’s tech stack and create a more comprehensive view within Meta Events Manager by using datasets.
This document details how to configure the Meta Business Extension to onboard advertisers to send web, app and physical store events to the Conversions API. This is an update from MBE Pixel and Conversions API Onboarding with the option to onboard advertisers with datasets. It allows selection and creation of datasets for advertisers who want to send app and physical store events with web events.
The Meta Business Extension version for consolidation is under beta. For access, please contact your Meta Representative.
Datasets allow advertisers to connect and manage event data from web, app, store and business messaging event sources to the Conversions API. Datasets may show event data from any of these integrations that you choose to set up:
Datasets enable you to view all customer activities from a single interface. They also allow you to reduce the effort to build and maintain multiple API integrations.
In Events Manager, advertisers have different options to create a dataset depending on their starting point. Or you can create a brand new dataset in Events Manager by linking during offline event set creation or through an existing mobile app or during messaging event set creation information. Note that linking a dataset to an application is required before sending mobile app events to the Conversions API and only one application can be linked to a dataset. See more details and instructions here.
The dataset is the container for events for web, app, and mobile. You will be able to onboard these types of events through this single container.
The dataset can be created or shown during the onboarding flow. You will still see pixel_id
in the API responses. For selected pixels, you can always know if they are datasets to support receiving events from the mobile app or physical store by checking the flag pixel_is_consolidated_container
in the MBE Install API response in additional_info
:
{ "data": [{ "token_type": "<token_type>", "installed_features": [ { "feature_instance_id": "<unique_id>", "feature_name" : string, "feature_type": enum, "connected_assets": { "ad_account_id": "<ad_account_id>", "business_manager_id": "<business_manager_id>", "catalog_id": "<catalog_id>", "commerce_merchant_settings_id": "<commerce_merchant_settings_id>", "ig_profile_id": "<instagram_profile_id>", "page_id": "<page_id>", "pixel_id": "<pixel_id>" }, "additional_info": { "onsite_commerce_eligible": bool, "pixel_is_consolidated_container": bool } } ] }] }
Your app must be owned by a Business Manager that is a verified business. Learn more about how to verify your business.
A Facebook app is required with the following access level, feature and permissions:
Access Level: Advanced Access
Feature: Ads Management Standard Access
Public Permissions: ads_management
, pages_read_engagement
, and ads_read
Private Permissions: manage_business_extension
. This is a private permission that requires your Facebook representative to add your app to the allow list.
System User Access Token: Sending events to the Conversions API requires an Access Token. To generate an Access Token on behalf of the client, use the Access Token returned via FBE and convert it into a System User Access Token by making an additional API call.
You can refer to this guide to share with advertisers on prerequisites before onboarding, except the token requirement. The Meta Business Extension will proceed automatically to obtain the token from the user during onboarding in a secured way.
For web onboarding: You can refer advertisers to follow the guidance and the required parameters.
For offline onboarding: You can refer advertisers to this developer documentation prior to onboarding for guidance and required parameters.
For app onboarding: You can refer advertisers to this developer documentation prior to onboarding for guidance and required parameters.
Field | Description |
---|---|
Type: setup | Required Seller’s Facebook setup, such as their unique identifier ( |
Type: business_config | Required Configuration object that the Meta Business Extension uses to configure the Meta Business Extension workflow. See |
Type: boolean | Required Set this value to |
Use this object to define the settings for the end user's Facebook presence.
Field | Description |
---|---|
Type: string | Required Unique business ID to represent your client's business. We use this as a unique identifier. For example, if the seller's company is called "Fubar", then "fubar-123" could be their |
Type: string | Optional The time zone in which the business is located. See possible time zone values. |
Type: string | Optional Three-letter ISO currency code of the default currency used by the business's catalog items. See supported currency codes. |
Type: enum | Required Vertical associated with the business.
Value: |
Type: string | Optional Used when upgrading from Meta Business Extension, v1. Contact your Meta representative if you are migrating from v1 to v2. |
Type: string | Required for |
Type: enum | Required Provides a way for the partner to configure the Conversions API flow of FBE. For the Conversions API flow, this value should be
|
Type: string | Optional Business Manager ID for user's existing Business Manager that a partner can enter to preselect for the user in the setup flow. |
Type: string | Optional Ad Account ID for user's existing ad account that a partner can enter to preselect for the user in the setup flow. |
Type: string | Optional Page ID for the user's existing Facebook Page that partner can enter to preselect for the user in setup flow. |
Type: string | Optional Instagram Business Profile ID for the user's existing Instagram Business Profile that a partner can enter to preselect for the user in the setup flow. |
Type: string | Optional Dataset for the user's existing Pixel or new dataset that a partner can enter to preselect for the user in the setup flow. |
Type: string | Optional Catalog ID for the user's existing catalog that a partner can enter to preselect for the user in the setup flow. |
Use this object to configure the business settings for an end user. This includes Call-to-action buttons and more. Each field includes a "type" linked to the respective tables below.
Field | Description |
---|---|
| Required Information for the end user's business. |
| Optional Messenger chat features on the end user's Facebook page, such as |
Type: FBECatalogFeedConfigData | Optional Determines whether the Meta Business Extension should use a feed approach, which grabs catalog items from a |
Type: FBEPageCtaConfigData | Optional Call to action (CTA) button on end user's page, such as |
Type: FBEIGCtaConfigData | Optional Features for the Instagram call to action (CTA) feature, such as |
| Optional Features for the Messenger persistent menu feature, such as |
We fire Webhook events each time one of your businesses installs, modifies, or uninstalls MBE. See here for more information. Below is the example payload for installed webhook:
{ "data": [{ “ad_account_id”: “<ad_account_id>” “business_manager_id”: “<business_manager_id>” “catalog_id”: “<catalog_id>” “commerce_merchant_settings_id”: “commerce_merchant_settings_id” “onsite_eligible”: bool “profiles”: [“page_id”] “instagram_profile”: [instagram_profile_id] “pixel_id”: “<pixel_id>” "token_type": "<token_type>", "installed_features": [ { "feature_instance_id": "<unique_id>", "feature_name" : string, "feature_type": enum, "connected_assets": { "ad_account_id": "<ad_account_id>", "business_manager_id": "<business_manager_id>", "catalog_id": "<catalog_id>", "commerce_merchant_settings_id": "<commerce_merchant_settings_id>", "ig_profile_id": "<instagram_profile_id>", "page_id": "<page_id>", "pixel_id": "<pixel_id>" }, "additional_info": { "onsite_commerce_eligible": bool, "pixel_is_consolidated_container": bool } } ] }] }