IntegrationsOtherGoogle AJSID Segments

Google AJSID Segments

Push user segment membership to Google AJSID for audience targeting, remarketing lists, and ad personalisation within Google Ads.

⚠️

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

Configuration

FieldTypeRequiredDescription
customer_idstringYesYour Google Ads customer ID (with or without dashes).
user_list_idstringYesThe Google Ads user list (audience) ID to add members to.
access_tokensecretYesA valid OAuth 2.0 access token with Google Ads API permissions for customer match operations.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Google AJSID Segments 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/google_ajsid/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Google AJSID Segments",
    "variant": "default",
    "config": {
      "customer_id": "123-456-7890",
      "user_list_id": "9876543210",
      "access_token": "your-oauth-access-token"
    },
    "delivery_mode": "server_side"
  }'

Delivery

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

Visit Google Ads documentation for full API documentation and credential setup instructions.