Selligent

Introduction

Didomi allows you to update your Selligent profile properties with the preferences collected through Didomi consent events.

Implementation

Connection

Didomi connects to your Selligent installation through API user credentials. Every time preferences are collected using the Didomi Platform, it triggers your campaign (using a gate) in order to update the properties of your Selligent profile. You can use Didomi user properties such as the organization_user_id to identify and link your users on both platforms.

Options

  • Upsert mode: Please note that the upsert_mode option is always set to true for Selligent. Upon consent collection for new records, Sellignet will automatically create the corresponding contacts.

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

Mapping

Didomi uses the entity profile of Selligent and sends the property value when updating a contact, hence consent events are mapped to the profile properties.

Configuration

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

PropertyDescriptionRequired

URL

Base URL for your Selligent installation

Yes

Username

Selligent API user

Yes

Password

API user's encryption key

Yes

Gate

The name of the gate used to access the campaign

Yes

Properties

List of properties to match between Didomi and Selligent

Yes

Example

{
    "config": {
        "url": "my-selligent-installation.com",
        "gate": "didomi",
        "authentication": {
            "username": "api_user",
            "password": "access_key"
        },
        "properties": [
            {
                "id": "MAIL",
                "value": "organization_user_id",
            }
        ]
    }
}

The configuration of the Seligent 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