With our Branch integration you can:
- Accurately track subscriptions generated from Branch campaigns, allowing you to know precisely how much revenue your campaigns generate.
- Send trial conversions and renewals directly from RevenueCat to Branch, allowing for tracking without an app open.
- Continue to follow your cohorts for months to know the long tail revenue generated by your campaigns.
If you're looking for the legacy version of our Branch integration guide that uses the
addAttribution()
method, head over to v3.0 of the docs: https://docs.revenuecat.com/v3.0/docs/branch
1. Set Branch user identity
In order to attach attribution data to the correct user, make sure the App User Ids for RevenueCat and Branch match. The easiest way to do this is to set the Branch SDK identity to match the Purchases App User Id whether you're providing your own ids or using our randomly generated ids.
If you prefer to keep a separate user identity between Branch and RevenueCat, use the networkUserId
parameter when adding attribution to specify the Branch user ID to attach to.
Install the Branch SDK
You will need to add the Branch SDK to your app before you can connect it with RevenueCat
// login
Branch.getInstance().setIdentity("my_app_user_id")
// logout
Branch.getInstance().logout()
// login
[[Branch getInstance] setIdentity:@"my_app_user_id"];
// logout
[[Branch getInstance] logout];
// login
Branch.getInstance().setIdentity("my_app_user_id");
// logout
Branch.getInstance().logout();
// login
branch.setIdentity("my_app_user_id")
// logout
branch.logout()
2. Send device data to RevenueCat
The Branch integration accepts some device-specific data that can be sent to RevenueCat through reserved Subscriber Attributes keys.
Key | Description | Required |
---|---|---|
| iOS advertising identifier UUID | ✅ (required) if no |
| iOS vender identifier UUID | ✅ (required) if no |
| Google advertising identifier | ✅ (required) if no |
| Android device identifier | ✅ (required) if no |
| The IP address of the device | ✅ (required) |
These properties can be set manually, like any other Subscriber Attributes, or through the helper method collectDeviceIdentifiers()
.
import AdSupport
// ...
Purchases.configure(withAPIKey: "public_sdk_key")
// ...
Purchases.shared.collectDeviceIdentifiers()
// ...
[RCPurchases configureWithAPIKey:@"public_sdk_key"];
// ...
[[RCPurchases sharedPurchases] collectDeviceIdentifiers];
//..
Purchases.configure(this, "public_sdk_key")
//..
Purchases.sharedInstance.collectDeviceIdentifiers()
You should make sure to call collectDeviceIdentifiers()
after the Purchases SDK is configured, and before the first purchase occurs. It's safe to call this multiple times, as only the new/updated values will be sent to RevenueCat.
Import AdSupport Framework (iOS)
The AdSupport framework is required to access the IDFA parameter on iOS. Don't forget to import this into your project.


Remove any client-side purchase tracking
Make sure to remove all client-side tracking of revenue. Since RevenueCat will be sending events for all revenue actions, tracking purchases with the Branch SDK directly can lead to double counting of revenue in Branch.
(Optional) Send campaign data to RevenueCat
RevenueCat itself is not an attribution network, and can't determine which specific ad drove an install/conversion. However, if you're able to collect this information from another source, such as Branch, it's possible to attach it to a user in RevenueCat using Subscriber Attributes as well.
The below reserved key names can be used to optionally attach campaign data to a user. This data will then be sent through to other downstream analytics integrations and accessible via APIs and webhooks.
Key |
---|
|
|
|
|
|
|
3. Send RevenueCat events into Branch
After you've set up the Purchase SDK to send attribution data from Branch to RevenueCat, you can "turn on" the integration and configure the event tokens from the RevenueCat dashboard.
- Navigate to your app in the RevenueCat dashboard and choose 'Branch' from the integrations menu
- Add your test key and live key from Branch
- Enter the event names that RevenueCat will send or choose the default event names
- Select whether you want RevenueCat to report proceeds (after app store cut) or revenue (gross sales)


Branch configuration screen
4. Testing the Branch integration
You can test the Branch integration end-to-end before going live. It's recommended that you test the integration is working properly for new users, and any existing users that may update their app to a new version.
Add a sandbox API key in the RevenueCat dashboard
Before you test the integration, make sure you have a Branch API key set in the "Branch key test" field in RevenueCat. This is required if you want the integration to trigger for sandbox purchases.
Make a sandbox purchase with a new user
Simulate a new user installing your app, and go through your app flow to complete a sandbox purchase.
Check that the required device data is collected
Navigate the the Customer View for the test user that just made a purchase. Make sure that all of the required data from step 2 above is listed as attributes for the user.


Check that the Branch event delivered successfully
While still on the Customer View, click into the test purchase event in the Customer History and make sure that the Branch integration event exists and was delivered successfully.


You've done it!
You should start seeing events from RevenueCat appear in Branch
Updated 2 months ago