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
| Field | Type | Required | Description |
|---|---|---|---|
account_id | string | Yes | Your Convert account ID. Found in your Convert dashboard under Account Settings. |
project_id | string | Yes | The Convert project ID to receive experiment events. Found in the project settings within your Convert dashboard. |
api_key | secret | Yes | Convert REST API key for server-side authentication. Generated in Account Settings > API Keys. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Convert or filter by Analytics.
- 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/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.