AdsApp.CampaignExtensions
Stay organized with collections
Save and categorize content based on your preferences.
Access to campaign-level extensions.
For example, to access all sitelinks belonging to a campaign:
var campaignSitelinkIterator = campaign.extensions().sitelinks().get();
while (campaignSitelinkIterator.hasNext()) {
var campaignSitelink = campaignSitelinkIterator.next();
}
Methods:
callouts()
Returns the selector of all callouts in the campaign.
Return values:
mobileApps()
Returns the selector of all mobile apps in the campaign.
Return values:
phoneNumbers()
Returns the selector of all phone numbers in the campaign.
Return values:
prices()
Returns the selector of all prices in the campaign.
Return values:
sitelinks()
Returns the selector of all sitelinks in the campaign.
Return values:
snippets()
Returns the selector of all snippets in the campaign.
Return values:
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-01-28 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-01-28 UTC."],[[["This page focuses on how to access campaign-level extensions within Google Ads scripts."],["The provided code snippet demonstrates how to iterate through and access all sitelinks associated with a specific campaign."],["A table outlines various methods to retrieve selectors for different campaign extension types, including callouts, mobile apps, phone numbers, prices, sitelinks, and snippets."],["Each method returns a specific selector object, allowing you to further manipulate and access the respective extensions."],["This information is crucial for developers aiming to automate campaign extension management or perform analysis at the campaign level."]]],[]]