The Conversions API is a Meta Business Tool that lets Business Messaging Partners share their clients’ data, for which they have permissions, directly from their servers and is designed to automatically honor Meta’s user privacy controls. This allows Business Messaging Partners to reliably send data about their clients' valuable customer interactions in business chats to understand and improve performance for their clients’ ads that click to WhatsApp, Messenger or Instagram, improving operational efficiency and growing their business.
This guide is designed to support Business Messaging Partners in completing the technical integration for the Conversions API for WhatsApp, Messenger or Instagram on behalf of their clients. It covers:
Note: The Conversions API also enables advertisers to send website, app, offline (including physical store) and CRM events to Meta. Currently, Business Messaging Partners that have integrated with the Conversions API for other use cases still need to go through the following steps for integration with the Conversions API for Business Messaging.
Before getting started with any integration, it’s necessary to ensure the right technical foundations are established and relevant access is granted for specific assets and platforms.
If you don’t already have one, follow the instructions to create one.
business_management
permissionpage_events
permission
page_events
permission in the “Permissions and Features” section of the developer App Dashboard. If you already have advanced access for pages_messaging
permission, your app should be automatically approved for page_events
permission after you apply.1. Get Access Token
In order to call the Dataset API and the Conversions API, you need an access token with the necessary permissions:
page_events
business_management
(can be substituted with ads_read
or ads_management
)Reuse the token generated from your Facebook Login.
2. Get page_id
Make sure you know the Page ID for the Page you want to report events for.
3. Set Up Dataset
When sharing event data to Meta via the Conversions API, Meta needs to know the source that is associated with those events. Datasets allow you to connect and manage event data from different sources–such as your website, mobile app, physical store location or business chats–in one place. You can learn more about datasets here.
Datasets are created either through a partner platform or directly on Events Manager. The business owns the dataset, and if the business is working with a partner, access to the dataset will also be granted to the partner.
Use the page_id
and access_token
to create a dataset by making a POST
call to the Dataset API. If there is already an existing dataset_id
associated with the page, it will return that id. Sample call below:
https://graph.facebook.com/v16.0/{PAGE_ID}/dataset?access_token={TOKEN}
The response will be an ID, which represents the dataset_id
. Using this and the access token from Facebook Login, you can now call the Conversions API to send messaging events to Meta.
Note: If the Page is associated with a business account and the business_management
permission is granted on the business account, the dataset will show up under the business account. Otherwise, it will be hidden from the advertiser.
4. Retrieve Page-Scoped ID (PSID)
Page-scoped ID (PSID
) is an identifier that represents the user in a user<>business conversation. This identifier is exposed via the Messages webhook and used throughout the send/receive API. This is also used in the Conversions API when sending conversion events mapped to a particular user (PSID
).
Make sure you know the PSID for the Page you want to report signals for.
In the final stage of integration, it is now possible to send events via the Conversions API with all information (access_token
, page_id
, dataset_id
, PSID
) obtained in the previous steps.
During the campaign period, as events happen in real time, notify Meta of these events via the Conversions API using the dataset_id
and access_token
. Make a POST
request to this API:
https://graph.facebook.com/v16.0/{DATASET_ID}/events?access_token={TOKEN}
Below is a sample API call for a single purchase event.
{ "data": [ { "event_name": "Purchase", "event_time": 1675999999, "action_source": "business_messaging", "messaging_channel": "messenger", "user_data": { "page_id": <PAGE_ID>, "page_scoped_user_id": <PSID> }, "custom_data": { "currency": "USD", "value": 123 } } ], "partner_agent": "<PARTNER_NAME>" }
After an event has been sent to Meta over the Conversions API successfully, you should be able to see that event reflected in Events Manager for the particular dataset. You can learn more about Events Manager and its usage here.
Note: If you are a partner, you will need to instruct your advertiser on how to access their dataset in their Events Manager in order to verify that the events are received.
Before getting started with any integration, it’s necessary to ensure the right technical foundations are established and relevant access is granted for specific assets and platforms.
If you don’t already have one, follow the instructions to create one.
whatsapp_business_management
permissionctwa_clid
, which is a required field for sending events over the Conversions API, is only available in the messages webhook on Biz API versions 2.45.1 and beyond. Note: WhatsApp Business Platform is fully transitioning to our next-generation Cloud API over the next 2 years. The final supported version of the On-Premise API client will expire on October 23, 2025. Learn more.1. Get Access Token
In order to call Dataset API and the Conversions API, you need an access token with the necessary permission:
whatsapp_business_management
If you are integrated with Embedded Signup, we recommend you reuse the token generated from the Embedded Signup flow. Alternatively, you can use a Business Integration System User access token, a System User access token, or a User access token as long as it contains the necessary permissions.
2. Retrieve WhatsApp Business Account ID
The WhatsApp Business Account ID (waba_id
) can be obtained on completion of Embedded Signup flow. See details.
3. Set Up Dataset API
When sharing event data to Meta via the Conversions API, Meta needs to know the source that is associated with those events. Datasets allow Meta Business Solutions Partners to connect and manage event data from different sources — such as a client’s website, mobile app, physical store location or business chats — in one place. You can learn more about datasets here. Datasets are owned by the client, and can be accessed by Meta Business Solutions Partners with necessary permissions.
You can use the whatsapp_business_account_id
and access_token
to create a dataset by making a POST
call to the Dataset API. If there is already an existing dataset_id
associated with the Whatsapp Business Account, it will return that ID. Sample call below:
https://graph.facebook.com/v16.0/{WHATSAPP_BUSINESS_ACCOUNT_ID}/dataset?access_token={TOKEN}
In order to retrieve the dataset_id, you can make a GET
call to the Dataset API with the whatsapp_business_account_id
and access_token
. Sample call below:
https://graph.facebook.com/v16.0/{WHATSAPP_BUSINESS_ACCOUNT_ID}/dataset?access_token={TOKEN}
The response will be an ID, which represents the dataset_id
. We now have the dataset set up and ready for use. Next, you will need to retrieve the ctwa_clid
that’s required to make a Conversions API call to send an event.
4. Retrieve Click-to-WhatsApp Click ID
The Click-to-WhatsApp Click ID (ctwa_clid
) is a personal identifier, unique per click, that is exposed to the business when the user entering the conversation originated from a click to WhatsApp ad. This identifier needs to be sent back to Meta via the Conversions API call (see below section for reference).
The ctwa_cli
d field is obtained from the referral object under Messages webhook (Cloud API | On Premise).
Upon receiving the ctwa_clid
, store it with the conversation. When a conversion has happened within a conversation, send the corresponding ctwa_clid
via the Conversions API. Here's a sample received message with a referral object containing a ctwa_clid
:
{ "data": [ { "contacts": [ { "profile": { "name": "Kerry Fisher " }, "wa_id": "16315551234" } ], "messages": [ { "from": "12345678", "id": "ABGGFlA5FpafAgo6tHcNmNjXmuSf", "referral": { "body": "This is a great product", "ctwa_clid": "ARAkLkA8rmlFeiCktEJQ-QTwRiyYHAFDLMNDBH0CD3qpjd0HR4irJ6LEkR7JwFF4XvnO2E4Nx0-eM-GABDLOPaOdRMv-_zfUQ2a", // <CLICK_TO_WHATSAPP_CLICK_ID> "headline": "Our new product", "image": { "id": "e144be57-12b1-4035-a520-703fcc87ef45" }, "source_id": "1234567890", "source_type": "ad", "source_url": "https://fb.me/AAAAA" }, "text": { "body": "Can I learn more about your business?" }, "timestamp": "1678189586", "type": "text" } ] }
In the final stage of integration, it is now possible to send events via the Conversions API with all information (waba_id
, dataset_id
, ctwa_clid
) obtained in the previous steps.
During an advertiser’s campaign period, events happen in real time. Notify Meta of these events via the Conversions API using dataset_id
and access token. Make a POST
request to this API:
https://graph.facebook.com/v16.0/{DATASET_ID}/events?access_token={TOKEN}
Below is a sample API call for a single purchase event.
{ "data": [ { "data": [ { "event_name": "Purchase", "event_time": 1675999999, "action_source": "business_messaging", "messaging_channel": "whatsapp", "user_data": { "whatsapp_business_account_id": <WHATSAPP_BUSINESS_ACCOUNT_ID>, "ctwa_clid": "ARAkLkA8rmlFeiCktEJQ-QTwRiyYHAFDLMNDBH0CD3qpjd0HR4irJ6LEkR7JwFF4XvnO2E4Nx0-eM-GABDLOPaOdRMv-_zfUQ2a", // <CLICK_TO_WHATSAPP_CLICK_ID> }, "custom_data": { "currency": "USD", "value": 123 } } ], "partner_agent": "<PARTNER_NAME>" }
After an event has been sent to Meta over the Conversions API successfully, you should be able to see that event reflected in Events Manager for the particular dataset. You can learn more about Events Manager and its usage here.
Note: If you are a partner, you will need to instruct your advertiser on how to access their dataset in their Events Manager in order to verify that the events are received.
Before getting started with any integration, it’s necessary to ensure the right technical foundations are established and relevant access is granted for specific assets and platforms.
If you don’t already have one, follow the instructions to create one.
business_management
permissioninstagram_manage_events
permission
instagram_manage_events
permission in the “Permissions and Features” section of the developer App Dashboard. If you already have advanced access for instagram_manage_messages
permission, your app should be automatically approved for instagram_manage_events
permission..1. Get Access Token
In order to call the Dataset API and the Conversions API, you need an access token with the necessary permissions:
instagram_manage_events
business_management
(can be substituted with ads_read
or ads_management
)Reuse the token generated from your Facebook Login.
2. Get `instagram_user_id`
Make sure you know the instagram_user_id
for the Instagram account you want to report events for.
3. Set Up Dataset
When sharing event data to Meta via the Conversions API, Meta needs to know the source that is associated with those events. Datasets allow you to connect and manage event data from different sources–such as your website, mobile app, physical store location or business chats–in one place. You can learn more about datasets here.
Datasets are created either through a partner platform or directly on Events Manager. The business owns the dataset, and if the business is working with a partner, access to the dataset will also be granted to the partner.
Use the instagram_user_id
and access_token
to create a dataset by making a POST
call to the Dataset API. If there is already an existing dataset_id
associated with the IG user, it will return that ID. Sample call below:
https://graph.facebook.com/v16.0/{PAGE_ID}/dataset?access_token={TOKEN}
The response will be an ID, which represents the dataset_id
. Using this and the access token from Facebook Login, you can now call the Conversions API to send messaging events to Meta.
4. Retrieve Instagram-scoped ID (IGSID)
Instagram-scoped ID (IGSID
) is an identifier that represents the user in a user<>business conversation. This identifier is exposed via the Messages webhook and used throughout the send/receive API. This is also used in the Conversions API when sending conversion events mapped to a particular user (IGSID
) (see next section for details).
Make sure you know the IGSID
for the Instagram account you want to report events for.
In the final stage of integration, you can now send events via the Conversions API with all information (dataset_id
, access token, instagram_business_account_id
, IGSID
) obtained in the previous steps.
During the campaign period, as events happen in real time, notify Meta of these events via the Conversions API using dataset_id
and access token. Make a POST
request to this API:
https://graph.facebook.com/v16.0/{DATASET_ID}/events?access_token={TOKEN}
Below is a sample API call for a single purchase event.
{ "data": [ { "event_name": "Purchase", "event_time": 1675999999, "action_source": "business_messaging", "messaging_channel": "instagram", "user_data": { "instagram_business_account_id": <instagram_business_account_id>, "ig_sid": <IGSID> }, "custom_data": { "currency": "USD", "value": 123 } } ], "partner_agent": "<PARTNER_NAME>" }
After an event has been sent to Meta over the Conversions API successfully, you should be able to see that event reflected in Events Manager for the particular dataset. You can learn more about Events Manager and its usage here.
Note: If you are a partner, you will need to instruct your advertiser on how to access their dataset in their Events Manager in order to verify that the events are received.
What type of messaging events does the Conversions API for Business Messaging support?
A: The Conversions API for Business Messaging now supports the following types of events for business messaging:
Please note that messaging events should only represent customer interactions that occur in the messaging thread, not conversions that occur on other channels like websites. You can easily distinguish your events by choosing the corresponding action source during your integration process
Is there guidance from Meta to keep the same or use different apps for different Conversions API integrations?
A: It is a best practice that a partner should use one app, so that Meta can identify all the events sent from the partner. If you are a partner who already has multiple apps, ensure the partner_agent is set to the partner agent name assigned to you. Speak with your Meta representative if you are unsure.
If a conversion occurs outside of the message thread (for example, on my website or app), how do we pass the events to Meta?
A: If a conversion happens outside of the messaging thread, you should still send that event back to Meta using the relevant Conversions API product. For instance, if a conversion happens on your website, use the Conversions API for web. If conversion happens on your app, use the Conversions API for app events. The event will still be attributed to the click ID for the Conversions API for web. The full list of parameters can be found here.
Does the Conversions API enable optimization for ads that click to message?
A: The Conversions API enables access to purchase optimization for ads that click to Messenger and ads that click to WhatsApp only, but is not available for Instagram ad optimization at this time. For ads that click to Instagram, you can optimize your ad campaigns to drive more conversations.
Can I reuse the existing dataset for the Conversions API for business messaging?
A: Yes, we support linking with existing dataset, you can refer to the available options to decide the right option for your business.
If I’m using Conversions API for Website today, will adding business messaging to the same integration interfere with my existing integration?
A: There is no risk to adding business messaging to your existing CAPI integration. Attribution is based on the page/dataset id and is not related to the app id.
How many datasets can be linked to a page?
A: You can only link one dataset to a page.
Do I need to deduplicate events before sending them over Conversions API for Business Messaging?
A: Meta does not assist with deduplicating events for Conversions API for Business Messaging so we highly encourage advertisers to perform deduplication before sending them over Conversions API for Business Messaging.