Impact Radius
Send conversion and action data to Impact Radius for affiliate attribution, partnership tracking, and commission management.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
account_sid | string | Yes | Your Impact Radius account SID, found in the Impact dashboard under Settings > API. |
auth_token | secret | Yes | The Impact Radius authentication token for API access. |
program_id | string | Yes | The Impact Radius program (campaign) ID to attribute conversions to. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Impact Radius 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/impact_radius/install \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Impact Radius",
"variant": "default",
"config": {
"account_sid": "IRabcdef1234567890",
"auth_token": "your_auth_token",
"program_id": "12345"
},
"delivery_mode": "server_side"
}'Delivery
Events are delivered server-side from your Datafly Signal infrastructure directly to the Impact Radius API. No client-side scripts are loaded for this integration.
Visit Impact Radius documentation for full API documentation and credential setup instructions.