Braze

Braze integration is in beta version, please contact support@didomi.io if you want to test it.

Introduction

Didomi allows you to update your Braze contact attributes with the preferences collected through your preference management platform (PMP).

Implementation

Connection

Didomi connects to Braze on your behalf through API calls using the API key and the Server instance of your Braze account. Therefore, every time preferences are collected using the Didomi Platform, it triggers an event that updates the attributes of your Braze users.

You can use the Didomi user's property organization_user_id to identify and link your users on both platforms.

Options

  • Upsert mode: Please note that the Upsert mode is not supported for this connector.

  • Bidirectional flow: Please note that the bidirectional flow is not supported at the moment.

Mapping

Didomi uses the entity user of Braze and supports the following user updates:

  1. Opted-in: means the user has explicitly chosen to receive email campaigns. This mapping option can be used in your Braze integration through the id OPTED_IN in the properties object.

  2. Unsubscribed: means the user has explicitly chosen to unsubscribe from getting email campaigns. To use this mapping option in your Braze integration, you need to use the id UNSUBSCRIBED under the properties object, and map it with a purpose or a preference value from your PMP.

  3. Subscription to a custom group: If you chose to segment your audience through custom subscription groups, Didomi also allow you to add/remove users from those groups based on their preference choices. You will simply need to map your subscription group id with a purpose or a preference from your PMP.

Configuration

Didomi needs the following configuration items to set up the connection with Braze:

PropertyDescriptionRequired

API key

An API key of Braze account

Yes

Server

Server instance of Braze account

Yes

Properties

List of properties to match between Didomi and Braze

Yes

Example

{
    "config": {
        "api_key": "Your Braze API Key",
        "server": "Your Braze server URL",
        "properties": [
            {
                "id": "OPTED_IN", // Native state in braze to tag the users who have explicitly opted-in to receive emails.
                "value": "consents_purposes_<purpose>_enabled"
            },             
            {
                "id": "UNSUBSCRIBED", // Native state in braze to tag the users who have explicitly unsubscribed from emails.
                "value": "consents_purposes_<purpose>_enabled"
            },
            {
                "id": "subscription_group_id", // Custom Subscription group that could be created in Braze
                "value": "consents_purposes_<purpose>_enabled"
        ]
    }
}

The configuration of the Braze integration can be done in the Didomi Console. First please reach out to support@didomi.io to get the integration's premium feature activated.

Last updated