IntegrationsAnalyticsAdobe Experience Platform

Adobe Experience Platform

Server-side data ingestion into Adobe Experience Platform (AEP) datasets via the Batch or Streaming Ingestion API.

Configuration

FieldTypeRequiredDescription
org_idstringYesYour Adobe IMS Organization ID. Found in the Adobe Admin Console under Organization > Settings.
dataset_idstringYesThe target AEP Dataset ID to receive ingested data. The dataset must have an associated XDM schema.
access_tokensecretYesOAuth 2.0 access token for the Adobe Experience Platform API. Use a service account (JWT) credential for long-lived server-to-server access.
sandbox_namestringYesThe AEP sandbox to target for data ingestion. Use ‘prod’ for production or the name of your development sandbox.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Adobe Experience Platform 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_experience_platform/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Adobe Experience Platform",
    "variant": "default",
    "config": {
      "org_id": "1234567890ABCDEF@AdobeOrg",
      "dataset_id": "5f1234abcd567890ef123456",
      "sandbox_name": "prod"
    },
    "delivery_mode": "server_side"
  }'

Delivery

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

Visit Adobe Experience Platform documentation for full API documentation and credential setup instructions.