Button
Send conversion and commerce event data to Button for mobile commerce attribution, partnership optimisation, and revenue tracking.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
application_id | string | Yes | Your Button application ID, found in the Button Dashboard under Settings. |
api_key | secret | Yes | Your Button API key for authenticating server-to-server event delivery. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Button 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/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.