IntegrationsCDPActionIQ

ActionIQ

Enterprise customer data platform for audience management, journey orchestration, and real-time personalisation at scale.

Configuration

FieldTypeRequiredDescription
api_keysecretYesYour ActionIQ API key for server-side data ingestion. Generated in the ActionIQ platform under Settings > API Keys.
account_idstringYesYour ActionIQ account identifier. Found in the platform settings or provided during onboarding.
destination_idstringYesThe ActionIQ destination identifier for this data source. Created when configuring a new inbound data connection.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find ActionIQ or filter by CDP.
  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/actioniq/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "ActionIQ",
    "variant": "default",
    "config": {
      "api_key": "aiq_xxxxxxxxxxxxxxxxxxxx",
      "account_id": "your-account-id",
      "destination_id": "dest-12345"
    },
    "delivery_mode": "server_side"
  }'

Delivery

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

Visit ActionIQ documentation for full API documentation and credential setup instructions.