Lytics
Customer data platform specialising in real-time behavioural scoring, audience building, and first-party data activation.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
api_token | secret | Yes | Your Lytics API token. Generate one in the Lytics dashboard under Account > API Tokens. |
account_id | string | Yes | Your Lytics account ID. Found in the Lytics dashboard under Account Settings. |
stream_name | string | Yes | The name of the Lytics data stream to ingest events into. Must match a configured stream in your Lytics account. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Lytics or filter by CDP.
- 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/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.