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

  1. 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")

Please note that you should use your Qonversion Application Access Key instead of "projectKey". You can find it in application settings.

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:

Configure Braze Credentials

Last updated

Was this helpful?