Adobe ID

Server-side identity syncing with the Adobe Experience Cloud Identity Service for cross-solution visitor identification.

⚠️

This integration is currently in beta. Configuration and behaviour may change.

Configuration

FieldTypeRequiredDescription
org_idstringYesYour Adobe IMS Organization ID. Found in the Adobe Admin Console under Organization > Settings.
client_idstringYesThe OAuth Client ID (API Key) from your Adobe Developer Console project credentials.
client_secretsecretYesThe OAuth Client Secret from your Adobe Developer Console project credentials. Keep this value secure.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Adobe ID or filter by Analytics.
  4. Click Install, select a variant if available, and fill in the required fields.
  5. Click Install Integration to create the integration with a ready-to-use default configuration.

API Setup

curl -X POST http://localhost:8084/v1/admin/integration-catalog/adobe_id/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Adobe ID",
    "variant": "default",
    "config": {
      "org_id": "1234567890ABCDEF@AdobeOrg",
      "client_id": "your_client_id"
    },
    "delivery_mode": "server_side"
  }'

Delivery

Events are delivered server-side from your Datafly Signal infrastructure directly to the Adobe ID API. No client-side scripts are loaded for this integration.

Visit Adobe ID documentation for full API documentation and credential setup instructions.