AdsApp.AdBuilderSpace
Stay organized with collections
Save and categorize content based on your preferences.
Starting point for creating an ad in an ad group. Typical usage:
var
adOperation
=
adGroup
.
newAd
()
.
expandedTextAdBuilder
()
.
withHeadlinePart1
(
"First headline of ad"
)
.
withHeadlinePart2
(
"Second headline of ad"
)
.
withDescription
(
"Ad description"
)
.
withPath1
(
"path1"
)
.
withPath2
(
"path2"
)
.
withFinalUrl
(
"http://www.example.com"
)
.
build
();
var
ad
=
adOperation
.
getResult
();
Methods:
expandedTextAdBuilder()
Returns a new expanded text ad builder associated with the ad group. Return values:
imageAdBuilder()
Returns a new image ad builder associated with the ad group. Return values:
responsiveDisplayAdBuilder()
Returns a new responsive Display ad builder associated with the ad group. Return values:
responsiveSearchAdBuilder()
Returns a new responsive Search ad builder associated with the ad group. 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-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\u003eAdGroup.newAd() initiates the creation of a new ad within a specified ad group.\u003c/p\u003e\n"],["\u003cp\u003eYou can create various ad types like expanded text ads, image ads, responsive display ads, and responsive search ads using their respective builders.\u003c/p\u003e\n"],["\u003cp\u003eEach builder provides methods to set specific elements of the ad, such as headlines, descriptions, paths, and final URLs.\u003c/p\u003e\n"],["\u003cp\u003eAfter building the ad, \u003ccode\u003egetResult()\u003c/code\u003e can be used to retrieve the created ad object.\u003c/p\u003e\n"]]],[],null,["# AdsApp.AdBuilderSpace\n\nStarting point for creating an ad in an ad group.\n\nTypical usage:\n\n```gdscript\nvar adOperation = adGroup.newAd().expandedTextAdBuilder()\n .withHeadlinePart1(\"First headline of ad\")\n .withHeadlinePart2(\"Second headline of ad\")\n .withDescription(\"Ad description\")\n .withPath1(\"path1\")\n .withPath2(\"path2\")\n .withFinalUrl(\"http://www.example.com\")\n .build();\nvar ad = adOperation.getResult();\n```\n\n### Methods:\n\n| Member | Type | Description |\n|-------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------|\n| [expandedTextAdBuilder()](#expandedTextAdBuilder) | [AdsApp.ExpandedTextAdBuilder](/google-ads/scripts/docs/reference/adsapp/adsapp_expandedtextadbuilder) | Returns a new expanded text ad builder associated with the ad group. |\n| [imageAdBuilder()](#imageAdBuilder) | [AdsApp.ImageAdBuilder](/google-ads/scripts/docs/reference/adsapp/adsapp_imageadbuilder) | Returns a new image ad builder associated with the ad group. |\n| [responsiveDisplayAdBuilder()](#responsiveDisplayAdBuilder) | [AdsApp.ResponsiveDisplayAdBuilder](/google-ads/scripts/docs/reference/adsapp/adsapp_responsivedisplayadbuilder) | Returns a new responsive Display ad builder associated with the ad group. |\n| [responsiveSearchAdBuilder()](#responsiveSearchAdBuilder) | [AdsApp.ResponsiveSearchAdBuilder](/google-ads/scripts/docs/reference/adsapp/adsapp_responsivesearchadbuilder) | Returns a new responsive Search ad builder associated with the ad group. |\n\n`expandedTextAdBuilder()`\n-------------------------\n\nReturns a new expanded text ad builder associated with the ad group.\n\n### Return values:\n\n| Type | Description |\n|--------------------------------------------------------------------------------------------------------|--------------------------------------------------------------|\n| [AdsApp.ExpandedTextAdBuilder](/google-ads/scripts/docs/reference/adsapp/adsapp_expandedtextadbuilder) | A new expanded text ad builder associated with the ad group. |\n\n`imageAdBuilder()`\n------------------\n\nReturns a new image ad builder associated with the ad group.\n\n### Return values:\n\n| Type | Description |\n|------------------------------------------------------------------------------------------|------------------------------------------------------|\n| [AdsApp.ImageAdBuilder](/google-ads/scripts/docs/reference/adsapp/adsapp_imageadbuilder) | A new image ad builder associated with the ad group. |\n\n`responsiveDisplayAdBuilder()`\n------------------------------\n\nReturns a new responsive Display ad builder associated with the ad group.\n\n### Return values:\n\n| Type | Description |\n|------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|\n| [AdsApp.ResponsiveDisplayAdBuilder](/google-ads/scripts/docs/reference/adsapp/adsapp_responsivedisplayadbuilder) | A new responsive Display ad builder associated with the ad group. |\n\n`responsiveSearchAdBuilder()`\n-----------------------------\n\nReturns a new responsive Search ad builder associated with the ad group.\n\n### Return values:\n\n| Type | Description |\n|----------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------|\n| [AdsApp.ResponsiveSearchAdBuilder](/google-ads/scripts/docs/reference/adsapp/adsapp_responsivesearchadbuilder) | A new responsive Search ad builder associated with the ad group. |"]]