Adobe Experience Platform
Server-side data ingestion into Adobe Experience Platform (AEP) datasets via the Batch or Streaming Ingestion API.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
org_id | string | Yes | Your Adobe IMS Organization ID. Found in the Adobe Admin Console under Organization > Settings. |
dataset_id | string | Yes | The target AEP Dataset ID to receive ingested data. The dataset must have an associated XDM schema. |
access_token | secret | Yes | OAuth 2.0 access token for the Adobe Experience Platform API. Use a service account (JWT) credential for long-lived server-to-server access. |
sandbox_name | string | Yes | The AEP sandbox to target for data ingestion. Use ‘prod’ for production or the name of your development sandbox. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Adobe Experience Platform or filter by Analytics.
- Click Install, select a variant if available, and fill in the required fields.
- 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.