list_google_ads_links
Retrieve a list of Google Ads accounts linked to a specific Google Analytics property by providing the property ID.
Instructions
Returns a list of links to Google Ads accounts for a property.
Args:
property_id: The Google Analytics property ID. Accepted formats are:
- A number
- A string consisting of 'properties/' followed by a number
Input Schema
Name | Required | Description | Default |
---|---|---|---|
property_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"property_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Property Id"
}
},
"required": [
"property_id"
],
"title": "list_google_ads_linksArguments",
"type": "object"
}