Braze
Qonversion + Braze
With Qonversion, you can automatically send mobile subscription events to Braze. Here you can find the full list of the events tracked.
Getting Started
1. Configure the SDKs
Set Qonversion SDK and Braze SDK to identify a user:
// Initialize Qonversion SDK with the user ID
Qonversion.launch(withKey: "projectKey")
Qonversion.setUserID("yourSideUserID")
// Initialize Braze SDK with the user ID
Appboy.sharedInstance()?.changeUser("yourSideUserID")
If you prefer to use Qonversion user ID as your user identifier across all analytics, use the code below:
Qonversion.launch(withKey: "projectKey") { (result, error) in
Appboy.sharedInstance()?.changeUser(result.uid)
}
2. Configure the integration
Configure the event names and activate the integration from the Qonversion dashboard. Go to the integrations dashboard and choose Braze.
Add your Braze API key and your Braze instance:

Done! Now you will be able to receive revenue and subscription events with values in your Braze account.
Last updated
Was this helpful?