Lytics

Customer data platform specialising in real-time behavioural scoring, audience building, and first-party data activation.

Configuration

FieldTypeRequiredDescription
api_tokensecretYesYour Lytics API token. Generate one in the Lytics dashboard under Account > API Tokens.
account_idstringYesYour Lytics account ID. Found in the Lytics dashboard under Account Settings.
stream_namestringYesThe name of the Lytics data stream to ingest events into. Must match a configured stream in your Lytics account.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Lytics 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/lytics/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Lytics",
    "variant": "default",
    "config": {
      "api_token": "xxxxxxxxxxxxxxxxxxxx",
      "account_id": "1234",
      "stream_name": "datafly_events"
    },
    "delivery_mode": "server_side"
  }'

Delivery

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

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