Braze

Send in-app subscription and purchases to Braze

With Qonversion, you can automatically send in-app subscription and purchases events to Braze.

1. Set up the SDKs

  1. Make sure you have Braze SDK installed. If you do not have Braze integration yet, please use this documentation for iOS and Android.

  2. Set Qonversion SDKs following installing the SDKs guides.

  3. Attribute events sent from Qonversion and events received from the Braze SDK to the same user by setting the same user id to Braze that you set to Qovnersion SDK in User Identifiers guide.

Appboy.sharedInstance()?.changeUser("yourSideUserID")
[[Appboy sharedInstance] changeUser:@"yourSideUserID"];
Appboy.getInstance(this).changeUser("yourSideUserID");
Appboy.getInstance(this).changeUser("yourSideUserID")

2. Configure the Braze Integration

Provide Integration Details

  1. Get your Braze API key and your Braze instance from Braze.

  2. Navigate to the Integrations section in your Qonversion project, select Braze, and provide the Braze API key and your Braze instance, and Save.

2869

πŸ‘

Done

Now Qonversion will start sending in-app purchases and subscriptions data to your Braze account.

Event Payload

In case you need details about data sent to Braze, follow the example below:

{
   "events":[
      {
         "external_id":"638e041drd467600318edd46",
         "name":"subscription_renewed",
         "properties":{
            "revenue":99
         },
         "time":"2023-06-14T12:20:36+00:00"
      }
   ]
}