Google Analytics · Schema

GoogleAdsLink

A link between a GA4 property and a Google Ads account.

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
adsPersonalizationEnabled boolean Enable personalized advertising features with this integration. Automatically publish my Google Analytics audience lists and Google Analytics remarketing events/parameters to the linked Google Ads acc
canManageClients boolean Output only. If true, this link is for a Google Ads manager account.
createTime string Output only. Time when this link was originally created.
creatorEmailAddress string Output only. Email address of the user that created the link. An empty string will be returned if the email address can't be retrieved.
customerId string Immutable. Google Ads customer ID.
name string Output only. Format: properties/{propertyId}/googleAdsLinks/{googleAdsLinkId} Note: googleAdsLinkId is not the Google Ads customer ID.
updateTime string Output only. Time when this link was last updated.
View JSON Schema on GitHub

JSON Schema

admin-api-google-ads-link-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/google-analytics/refs/heads/main/json-schema/admin-api-google-ads-link-schema.json",
  "title": "GoogleAdsLink",
  "description": "A link between a GA4 property and a Google Ads account.",
  "type": "object",
  "properties": {
    "adsPersonalizationEnabled": {
      "description": "Enable personalized advertising features with this integration. Automatically publish my Google Analytics audience lists and Google Analytics remarketing events/parameters to the linked Google Ads account. If this field is not set on create/update, it will be defaulted to true.",
      "type": "boolean"
    },
    "canManageClients": {
      "description": "Output only. If true, this link is for a Google Ads manager account.",
      "readOnly": true,
      "type": "boolean"
    },
    "createTime": {
      "description": "Output only. Time when this link was originally created.",
      "format": "google-datetime",
      "readOnly": true,
      "type": "string"
    },
    "creatorEmailAddress": {
      "description": "Output only. Email address of the user that created the link. An empty string will be returned if the email address can't be retrieved.",
      "readOnly": true,
      "type": "string"
    },
    "customerId": {
      "description": "Immutable. Google Ads customer ID.",
      "type": "string"
    },
    "name": {
      "description": "Output only. Format: properties/{propertyId}/googleAdsLinks/{googleAdsLinkId} Note: googleAdsLinkId is not the Google Ads customer ID.",
      "readOnly": true,
      "type": "string"
    },
    "updateTime": {
      "description": "Output only. Time when this link was last updated.",
      "format": "google-datetime",
      "readOnly": true,
      "type": "string"
    }
  }
}