AdsApp.ExcludedPlacement
Stay organized with collections
Save and categorize content based on your preferences.
Represents a Google Ads excluded placement. Methods:
getAdGroup()
Returns the ad group to which this excluded placement belongs. Return values:
getBaseAdGroup()
Returns the base ad group to which this excluded placement belongs. Return values:
getBaseCampaign()
Returns the base campaign to which this excluded placement belongs. Return values:
getCampaign()
Returns the campaign to which this excluded placement belongs or null
if it does not belong to a search or display campaign. Return values:
getId()
Returns the ID of the excluded placement. Return values:
getResourceName()
Returns the resource name of the excluded placement. Return values:
getUrl()
Returns the URL of the excluded placement. Return values:
remove()
Removes the excluded placement. Returns nothing.
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-09-03 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-09-03 UTC."],[[["\u003cp\u003eRepresents an excluded placement within Google Ads, preventing ads from appearing on specific websites or apps.\u003c/p\u003e\n"],["\u003cp\u003eProvides methods to access information about the excluded placement, such as its ID, URL, and associated ad groups or campaigns.\u003c/p\u003e\n"],["\u003cp\u003eAllows for the removal of the excluded placement using the \u003ccode\u003eremove()\u003c/code\u003e method.\u003c/p\u003e\n"],["\u003cp\u003eOffers methods like \u003ccode\u003egetCampaign()\u003c/code\u003e and \u003ccode\u003egetAdGroup()\u003c/code\u003e to retrieve the associated campaign and ad group.\u003c/p\u003e\n"]]],[],null,["# AdsApp.ExcludedPlacement\n\nRepresents a Google Ads excluded placement.\n\n### Methods:\n\n| Member | Type | Description |\n|---------------------------------------|------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|\n| [getAdGroup()](#getAdGroup) | [AdsApp.AdGroup](/google-ads/scripts/docs/reference/adsapp/adsapp_adgroup) | Returns the ad group to which this excluded placement belongs. |\n| [getBaseAdGroup()](#getBaseAdGroup) | [AdsApp.AdGroup](/google-ads/scripts/docs/reference/adsapp/adsapp_adgroup) | Returns the base ad group to which this excluded placement belongs. |\n| [getBaseCampaign()](#getBaseCampaign) | [AdsApp.Campaign](/google-ads/scripts/docs/reference/adsapp/adsapp_campaign) | Returns the base campaign to which this excluded placement belongs. |\n| [getCampaign()](#getCampaign) | [AdsApp.Campaign](/google-ads/scripts/docs/reference/adsapp/adsapp_campaign) | Returns the campaign to which this excluded placement belongs or `null` if it does not belong to a search or display campaign. |\n| [getId()](#getId) | `String` | Returns the ID of the excluded placement. |\n| [getResourceName()](#getResourceName) | `String` | Returns the resource name of the excluded placement. |\n| [getUrl()](#getUrl) | `String` | Returns the URL of the excluded placement. |\n| [remove()](#remove) | `void` | Removes the excluded placement. |\n\n`getAdGroup()`\n--------------\n\nReturns the ad group to which this excluded placement belongs.\n\n### Return values:\n\n| Type | Description |\n|----------------------------------------------------------------------------|--------------------------------------------------------|\n| [AdsApp.AdGroup](/google-ads/scripts/docs/reference/adsapp/adsapp_adgroup) | The ad group to which this excluded placement belongs. |\n\n`getBaseAdGroup()`\n------------------\n\nReturns the base ad group to which this excluded placement belongs.\n\n### Return values:\n\n| Type | Description |\n|----------------------------------------------------------------------------|-------------------------------------------------------------|\n| [AdsApp.AdGroup](/google-ads/scripts/docs/reference/adsapp/adsapp_adgroup) | The base ad group to which this excluded placement belongs. |\n\n`getBaseCampaign()`\n-------------------\n\nReturns the base campaign to which this excluded placement belongs.\n\n### Return values:\n\n| Type | Description |\n|------------------------------------------------------------------------------|-------------------------------------------------------------|\n| [AdsApp.Campaign](/google-ads/scripts/docs/reference/adsapp/adsapp_campaign) | The base campaign to which this excluded placement belongs. |\n\n`getCampaign()`\n---------------\n\nReturns the campaign to which this excluded placement belongs or `null` if it does not belong to a search or display campaign.\n\n### Return values:\n\n| Type | Description |\n|------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|\n| [AdsApp.Campaign](/google-ads/scripts/docs/reference/adsapp/adsapp_campaign) | The campaign to which this excluded placement belongs or `null` if it does not belong to a search or display campaign. |\n\n`getId()`\n---------\n\nReturns the ID of the excluded placement.\n\n### Return values:\n\n| Type | Description |\n|----------|-----------------------------------|\n| `String` | The ID of the excluded placement. |\n\n`getResourceName()`\n-------------------\n\nReturns the resource name of the excluded placement.\n\n### Return values:\n\n| Type | Description |\n|----------|----------------------------------------------|\n| `String` | The resource name of the excluded placement. |\n\n`getUrl()`\n----------\n\nReturns the URL of the excluded placement.\n\n### Return values:\n\n| Type | Description |\n|----------|------------------------------------|\n| `String` | The URL of the excluded placement. |\n\n`remove()`\n----------\n\nRemoves the excluded placement.\n\nReturns nothing."]]