AppsFlyer Android
Send Android app events and conversions to AppsFlyer for mobile attribution, analytics, and campaign optimization.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
app_id | string | Yes | The Android package name (application ID) as registered in AppsFlyer. |
dev_key | string | Yes | Your AppsFlyer dev key, found in the AppsFlyer dashboard under App Settings. |
api_token | secret | Yes | The AppsFlyer V2 API token for authenticating server-to-server event calls. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find AppsFlyer Android 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/appsflyer_android/install \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "AppsFlyer Android",
"variant": "default",
"config": {
"app_id": "com.example.myapp",
"dev_key": "AbCdEfGhIjKlMnOpQrSt",
"api_token": "your_api_token"
},
"delivery_mode": "server_side"
}'Delivery
Events are delivered server-side from your Datafly Signal infrastructure directly to the AppsFlyer API. No client-side scripts are loaded for this integration.
Visit AppsFlyer documentation for full API documentation and credential setup instructions.