Impact Radius

Send conversion and action data to Impact Radius for affiliate attribution, partnership tracking, and commission management.

Configuration

FieldTypeRequiredDescription
account_sidstringYesYour Impact Radius account SID, found in the Impact dashboard under Settings > API.
auth_tokensecretYesThe Impact Radius authentication token for API access.
program_idstringYesThe Impact Radius program (campaign) ID to attribute conversions to.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Impact Radius 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/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.