Convert

Server-side experiment data delivery to Convert for A/B testing, multivariate experiments, and personalization analytics.

⚠️

This integration is currently in beta. Configuration and behaviour may change.

Configuration

FieldTypeRequiredDescription
account_idstringYesYour Convert account ID. Found in your Convert dashboard under Account Settings.
project_idstringYesThe Convert project ID to receive experiment events. Found in the project settings within your Convert dashboard.
api_keysecretYesConvert REST API key for server-side authentication. Generated in Account Settings > API Keys.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Convert or filter by Analytics.
  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/convert/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Convert",
    "variant": "default",
    "config": {
      "account_id": "10001234",
      "project_id": "20005678",
      "api_key": "your_api_key"
    },
    "delivery_mode": "server_side"
  }'

Delivery

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

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