Button

Send conversion and commerce event data to Button for mobile commerce attribution, partnership optimisation, and revenue tracking.

Configuration

FieldTypeRequiredDescription
application_idstringYesYour Button application ID, found in the Button Dashboard under Settings.
api_keysecretYesYour Button API key for authenticating server-to-server event delivery.

Quick Setup

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

Delivery

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

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