Comment on page
Actito
Didomi allows you to synchronize your Actito profiles subscriptions with the preferences collected through Didomi consent events.
Didomi connects to your Actito account through an API Key to update the subscriptions of an Actito profile every time preferences are collected using the Didomi Platform. Users are matched between Didomi and Actito using the Didomi user's
organization_user_id
property.- Upsert mode: You can choose allowing Didomi to create contacts on Actito, by setting
upsert_mode
to true. Otherwise, when a consent is collected but theorganization_user_id
value does not match with any contact in Actito, the consent update will not be propagated to Actito. - Bidirectional flow: Actito can also be integrated in a bi-directional fashion by setting up a webhook on the Actito portal pointing to webhooks.didomi.io. This will sync Didomi with your Actito profile updates.
Didomi uses the entity profile of Actito and sends the subscription update. Hence consent events are mapped to the subscription properties of Actito profiles.
Important: This integration will only synchronize the subscription properties present at the moment of the activation. If a new subscription property is added to Actito, make sure to update your Didomi integration accordingly.
Didomi needs the following configuration items to set up the connection with Actito:
Property | Description | Required |
---|---|---|
Upsert mode | By setting upsert_mode to true you allow Didomi to create contacts in Actito | No, Default value = false |
API Key | API key of the account to connect to the Actito servers | Yes |
Entity ID | ID of the Actito entity of the account. | Yes |
Table name | Name of the Actito table where profiles are stored | Yes |
Properties | List of subscription properties to match between Didomi and Actito | Yes |
On top of the properties to map as subscriptions from the configuration, we also automatically include all the properties (if any) from the Didomi user's
metadata
object as Actito profile attributes.{
"upsert_mode": true,
"config": {
"api_key": "API_KEY",
"entity_id": "ENTITY_NAME",
"table_id": "TABLE_NAME",
"properties": [
{
"id": "ACTITO_EMAIL_SUBSCRIPTION",
"value": "consents_channels_email_enabled",
}
]
}
}
The configuration of the Actito integration can be done in the Didomi Console. First please reach out to [email protected] to get the integration's premium feature activated.
Last modified 4mo ago