AWIN

Send conversion and sale data to AWIN for affiliate tracking, commission attribution, and publisher performance reporting.

Configuration

FieldTypeRequiredDescription
advertiser_idstringYesYour AWIN advertiser ID, found in the AWIN interface under Account Settings.
api_keysecretYesYour AWIN API key for authenticating server-to-server conversion tracking.
feed_idstringYesThe AWIN feed ID associated with your product or conversion feed.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find AWIN 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/awin/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "AWIN",
    "variant": "default",
    "config": {
      "advertiser_id": "12345",
      "api_key": "your_api_key",
      "feed_id": "67890"
    },
    "delivery_mode": "server_side"
  }'

Delivery

Events are delivered server-side from your Datafly Signal infrastructure directly to the AWIN API. No client-side scripts are loaded for this integration.

Visit AWIN documentation for full API documentation and credential setup instructions.