Xandr

Send conversion events to Xandr (Microsoft) for programmatic campaign attribution, audience targeting, and cross-channel performance measurement across the Xandr marketplace.

Configuration

FieldTypeRequiredDescription
member_idstringYesYour Xandr member (seat) ID. Found in the Xandr console under Account Settings.
advertiser_idstringYesYour Xandr advertiser ID. Found in the Xandr console under Advertiser Settings.
pixel_idstringYesYour Xandr conversion pixel ID. Found in the Xandr console under Pixels > Universal Pixel.
api_keysecretYesAPI key for authenticating server-side event delivery. Generate in the Xandr console under Settings > API.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Xandr or filter by Advertising.
  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/xandr/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Xandr",
    "variant": "default",
    "config": {
      "member_id": "12345",
      "advertiser_id": "xandr-adv-67890",
      "pixel_id": "xandr-px-11223"
    },
    "delivery_mode": "server_side"
  }'

Delivery

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

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