AdsApp.ExcludedYouTubeVideo
Stay organized with collections
Save and categorize content based on your preferences.
Represents a Google Ads excluded YouTube Video. Methods:
getAdGroup()
Returns the ad group to which this excluded YouTube video belongs. Return values:
getBaseAdGroup()
Returns the base ad group to which this excluded YouTube video belongs. Return values:
getBaseCampaign()
Returns the base campaign to which this excluded YouTube video belongs. Return values:
getCampaign()
Returns the campaign to which this excluded YouTube video belongs or null
if it does not belong to a search or display campaign. Return values:
getId()
Returns the ID of the excluded YouTube video. Return values:
getResourceName()
Returns the resource name of the excluded YouTube video. Return values:
getVideoId()
Returns the YouTube video ID. Return values:
remove()
Removes the excluded YouTube video. 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 YouTube video within Google Ads, providing methods to manage its association with ad groups and campaigns.\u003c/p\u003e\n"],["\u003cp\u003eAllows retrieval of essential information such as the video ID, ad group, and campaign details through dedicated methods like \u003ccode\u003egetId()\u003c/code\u003e, \u003ccode\u003egetAdGroup()\u003c/code\u003e, and \u003ccode\u003egetCampaign()\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eEnables the removal of the excluded YouTube video using the \u003ccode\u003eremove()\u003c/code\u003e method.\u003c/p\u003e\n"],["\u003cp\u003eOffers access to both base and regular ad group and campaign information through methods like \u003ccode\u003egetBaseAdGroup()\u003c/code\u003e and \u003ccode\u003egetCampaign()\u003c/code\u003e, respectively.\u003c/p\u003e\n"]]],[],null,["# AdsApp.ExcludedYouTubeVideo\n\nRepresents a Google Ads excluded YouTube Video.\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 YouTube video belongs. |\n| [getBaseAdGroup()](#getBaseAdGroup) | [AdsApp.AdGroup](/google-ads/scripts/docs/reference/adsapp/adsapp_adgroup) | Returns the base ad group to which this excluded YouTube video belongs. |\n| [getBaseCampaign()](#getBaseCampaign) | [AdsApp.Campaign](/google-ads/scripts/docs/reference/adsapp/adsapp_campaign) | Returns the base campaign to which this excluded YouTube video belongs. |\n| [getCampaign()](#getCampaign) | [AdsApp.Campaign](/google-ads/scripts/docs/reference/adsapp/adsapp_campaign) | Returns the campaign to which this excluded YouTube video belongs or `null` if it does not belong to a search or display campaign. |\n| [getId()](#getId) | `String` | Returns the ID of the excluded YouTube video. |\n| [getResourceName()](#getResourceName) | `String` | Returns the resource name of the excluded YouTube video. |\n| [getVideoId()](#getVideoId) | `String` | Returns the YouTube video ID. |\n| [remove()](#remove) | `void` | Removes the excluded YouTube video. |\n\n`getAdGroup()`\n--------------\n\nReturns the ad group to which this excluded YouTube video 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 YouTube video belongs. |\n\n`getBaseAdGroup()`\n------------------\n\nReturns the base ad group to which this excluded YouTube video 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 YouTube video belongs. |\n\n`getBaseCampaign()`\n-------------------\n\nReturns the base campaign to which this excluded YouTube video 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 YouTube video belongs. |\n\n`getCampaign()`\n---------------\n\nReturns the campaign to which this excluded YouTube video 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 YouTube video 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 YouTube video.\n\n### Return values:\n\n| Type | Description |\n|----------|---------------------------------------|\n| `String` | The ID of the excluded YouTube video. |\n\n`getResourceName()`\n-------------------\n\nReturns the resource name of the excluded YouTube video.\n\n### Return values:\n\n| Type | Description |\n|----------|--------------------------------------------------|\n| `String` | The resource name of the excluded YouTube video. |\n\n`getVideoId()`\n--------------\n\nReturns the YouTube video ID.\n\n### Return values:\n\n| Type | Description |\n|----------|-----------------------|\n| `String` | The YouTube video ID. |\n\n`remove()`\n----------\n\nRemoves the excluded YouTube video.\n\nReturns nothing."]]