Commission Junction
Send conversion and transaction data to Commission Junction (CJ Affiliate) for affiliate tracking, commission attribution, and publisher reporting.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
enterprise_id | string | Yes | Your CJ Affiliate enterprise ID, found in the CJ Account Manager. |
personal_key | secret | Yes | Your CJ personal API key for authenticating server-to-server conversion calls. |
advertiser_id | string | Yes | The CJ advertiser ID associated with the program. |
action_id | string | Yes | The CJ action ID that defines the type of conversion being tracked. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Commission Junction or filter by Attribution.
- 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/commission_junction/install \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Commission Junction",
"variant": "default",
"config": {
"enterprise_id": "1234567",
"personal_key": "your_personal_key",
"advertiser_id": "7654321"
},
"delivery_mode": "server_side"
}'Delivery
Events are delivered server-side from your Datafly Signal infrastructure directly to the Commission Junction API. No client-side scripts are loaded for this integration.
Visit Commission Junction documentation for full API documentation and credential setup instructions.