IntegrationsAdvertisingMicrosoft Ads CAPI

Microsoft Ads CAPI

Send conversion events to Microsoft Advertising via the Conversions API for Bing, Edge, and Microsoft Audience Network campaign attribution and optimisation.

Configuration

FieldTypeRequiredDescription
customer_idstringYesYour Microsoft Advertising customer ID. Found in the Microsoft Ads console under Account Settings.
account_idstringYesYour Microsoft Advertising account ID. Found in the Microsoft Ads console under Account Settings.
access_tokensecretYesOAuth2 access token with Microsoft Ads API permissions. Generated via the Microsoft Identity Platform.
uet_tag_idstringYesYour Universal Event Tracking (UET) tag ID. Found in Microsoft Ads under Tools > Conversion Tracking > UET Tags.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Microsoft Ads CAPI 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/microsoft_ads/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Microsoft Ads CAPI",
    "variant": "default",
    "config": {
      "customer_id": "123456789",
      "account_id": "987654321",
      "access_token": "eyJ0eXAiOi..."
    },
    "delivery_mode": "server_side"
  }'

Delivery

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

Visit Microsoft Ads CAPI documentation for full API documentation and credential setup instructions.