Adjust
Send conversion and event data to Adjust for mobile attribution, campaign measurement, and fraud prevention.
⚠️
This integration is currently in beta. Configuration and behaviour may change.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
app_token | string | Yes | Your Adjust app token, found in the Adjust dashboard under App Settings. |
event_token | string | Yes | The Adjust event token for the specific event you want to track. |
s2s_secret | secret | Yes | The server-to-server (S2S) security secret for authenticating server-side API calls. |
environment | select | Yes | The Adjust environment to send events to. Use sandbox for testing. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Adjust or filter by Attribution.
- 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/adjust/install \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Adjust",
"variant": "default",
"config": {
"app_token": "abc123def456",
"event_token": "ev1abc",
"s2s_secret": "your_s2s_secret"
},
"delivery_mode": "server_side"
}'Delivery
Events are delivered server-side from your Datafly Signal infrastructure directly to the Adjust API. No client-side scripts are loaded for this integration.
Visit Adjust documentation for full API documentation and credential setup instructions.