Axon

Send event and analytics data to Axon for data orchestration, dataset management, and centralised event collection.

⚠️

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

Configuration

FieldTypeRequiredDescription
api_keysecretYesYour Axon API key for authenticating server-to-server event delivery.
org_idstringYesYour Axon organisation ID, found in the Axon dashboard under Settings.
dataset_idstringYesThe Axon dataset ID to write events into.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Axon or filter by Other.
  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/axon/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Axon",
    "variant": "default",
    "config": {
      "api_key": "your-api-key",
      "org_id": "org-abc-123",
      "dataset_id": "dataset-xyz-456"
    },
    "delivery_mode": "server_side"
  }'

Delivery

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

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