IntegrationsAttributionAdjust

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

FieldTypeRequiredDescription
app_tokenstringYesYour Adjust app token, found in the Adjust dashboard under App Settings.
event_tokenstringYesThe Adjust event token for the specific event you want to track.
s2s_secretsecretYesThe server-to-server (S2S) security secret for authenticating server-side API calls.
environmentselectYesThe Adjust environment to send events to. Use sandbox for testing.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Adjust or filter by Attribution.
  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/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.