AdsApp.​SitelinkSelector

Fetches sitelinks. Supports filtering and sorting.

Typical usage:

var sitelinkSelector = AdsApp.extensions()
    .sitelinks()
    .withCondition("asset.id IN [1, 2, 3]")
    .orderBy("asset.id DESC");

var sitelinkIterator = sitelinkSelector.get();
while (sitelinkIterator.hasNext()) {
  var sitelink = sitelinkIterator.next();
}
Related:

Methods:

MemberTypeDescription
forDateRangeAdsApp.SitelinkSelectorSets a predefined date range onto the selector.
forDateRangeAdsApp.SitelinkSelectorSets a custom date range onto the selector.
getAdsApp.SitelinkIteratorFetches the requested sitelinks and returns an iterator.
orderByAdsApp.SitelinkSelectorSpecifies the ordering of the resulting entities.
withConditionAdsApp.SitelinkSelectorAdds the specified condition to the selector in order to narrow down the results.
withIdsAdsApp.SitelinkSelectorRestricts this selector to return only sitelinks with the given sitelink IDs.
withLimitAdsApp.SitelinkSelectorSpecifies limit for the selector to use.
withOnlyLegacyAdsApp.SitelinkSelectorFetches legacy sitelinks.
withOnlyUpgradedAdsApp.SitelinkSelectorFetches upgraded sitelinks.
withResourceNamesAdsApp.SitelinkSelectorRestricts this selector to return only sitelinks with the given Google Ads API resource names.

forDateRange(dateRange)

Sets a predefined date range onto the selector. Supported values:

TODAY, YESTERDAY, LAST_7_DAYS, LAST_14_DAYS, LAST_30_DAYS, LAST_BUSINESS_WEEK, LAST_WEEK_SUN_SAT, LAST_WEEK_MON_SUN, THIS_WEEK_MON_TODAY, THIS_WEEK_SUN_TODAY, LAST_MONTH, THIS_MONTH, ALL_TIME. Example:

selector.forDateRange("THIS_WEEK_SUN_TODAY");

Date range must be specified if the selector has conditions or ordering for a stat field. Note that only the last date range specified for the selector will take effect.

Arguments:

NameTypeDescription
dateRangeStringDate range to set onto the selector.

Return values:

TypeDescription
AdsApp.SitelinkSelectorThe selector with date range applied.

forDateRange(dateFrom, dateTo)

Sets a custom date range onto the selector. Both parameters can be either an object containing year, month, and day fields, or an 8-digit string in YYYYMMDD form. For instance, March 24th, 2013 is represented as either {year: 2013, month: 3, day: 24} or "20130324". The date range is inclusive on both ends, so forDateRange("20130324", "20130324") sets the range of one day.

Date range must be specified if the selector has conditions or ordering for a stat field. Note that only the last date range specified for the selector will take effect.

Arguments:

NameTypeDescription
dateFromObjectStart date of the date range.
dateToObjectEnd date of the date range.

Return values:

TypeDescription
AdsApp.SitelinkSelectorThe selector with date range applied.

get()

Fetches the requested sitelinks and returns an iterator.

Return values:

TypeDescription
AdsApp.SitelinkIteratorIterator of the requested sitelinks.

orderBy(orderBy)

Specifies the ordering of the resulting entities. orderBy parameter can have one of the following forms:
  • orderBy("metrics.cost_micros") - orders results by metrics.cost_micros, in ascending order.
  • orderBy("metrics.ctr ASC") - orders results by metrics.ctr, in ascending order.
  • orderBy("ad_group_criterion.cpc_bid_micros DESC") - orders results by ad_group_criterion.cpc_bid_micros, in descending order.

See SitelinkSelector.withCondition(String) for enumeration of columns that can be used.

orderBy() may be called multiple times. Consider the following example:

selector = selector.forDateRange("LAST_14_DAYS")
    .orderBy("metrics.clicks DESC")
    .orderBy("metrics.ctr ASC");

The results will be ordered by metrics.clicks in descending order. Results with equal metrics.clicks value will be ordered by metrics.ctr in ascending order.

LabelNames column cannot be used for ordering.

Arguments:

NameTypeDescription
orderByStringOrdering to apply.

Return values:

TypeDescription
AdsApp.SitelinkSelectorThe selector with ordering applied.

withCondition(condition)

Adds the specified condition to the selector in order to narrow down the results.

Multiple conditions may be added to the same selector:

selector = selector.forDateRange("LAST_MONTH")
    .withCondition("metrics.clicks > 5")
    .withCondition("metrics.impressions > 100");
All specified conditions are AND-ed together. The above example will retrieve entities that observed over 100 metrics.impressions AND more than 5 clicks.

The parameter to be passed into this method must be of the following form:

"COLUMN_NAME OPERATOR VALUE"

Operators

The operator that can be used in a condition depends on the type of column.
  • For Integer and Long columns (e.g. metrics.clicks and metrics.impressions):
    <  <=  >  >=  =  !=
  • For Double columns (e.g. metrics.ctr):
    <  >
  • For String columns (e.g. campaign.name):
    =  !=  (NOT) (LIKE | CONTAINS | REGEXP_MATCH)
  • For Enumeration columns (ones that can only take one value from a predefined list, such as Status):
    =  !=  IN ()  NOT IN ()
  • For StringSet columns (e.g. campaign.labels):
    CONTAINS ALL ()  CONTAINS ANY ()  CONTAINS NONE ()
Conditions using IN, NOT IN, CONTAINS ALL, CONTAINS ANY and CONTAINS NONE operators look as follows:
withCondition("resource.column_name IN (Value1, Value2)")

Columns

All column names are case-sensitive, and so are all values of enumerated columns (such as Status).

ColumnTypeExample
Stats
asset.idLongwithCondition("asset.id = 12345")
asset.nameStringwithCondition("asset.name = 'my asset'")
asset.sitelink_asset.description1StringwithCondition("asset.sitelink_asset.description1 CONTAINS 'store'")
asset.sitelink_asset.description2StringwithCondition("asset.sitelink_asset.description2 CONTAINS 'store'")
asset.sitelink_asset.end_dateStringwithCondition("asset.sitelink_asset.end_date = '2022-12-25'")
asset.sitelink_asset.link_textStringwithCondition("asset.sitelink_asset.link_text CONTAINS 'store'")
asset.sitelink_asset.start_dateStringwithCondition("asset.sitelink_asset.start_date = '2022-12-25'")

Arguments:

NameTypeDescription
conditionStringCondition to add to the selector.

Return values:

TypeDescription
AdsApp.SitelinkSelectorThe selector with the condition applied.

withIds(ids)

Restricts this selector to return only sitelinks with the given sitelink IDs.
var sitelinkIds = ['12345', '23456', '34567'];
selector = selector.withIds(sitelinkIds);

The resulting selector can be further refined by applying additional conditions to it. The ID-based condition will then be AND-ed together with all the other conditions, including any other ID-based conditions. So, for instance, the following selector:

AdsApp.extensions().sitelinks()
   .withIds(['12345', '23456', '34567'])
   .withIds(['34567', '45678', '56789']);
will only get the sitelink with ID 34567, since it would be the only sitelink that satisfies both ID conditions.

The selector can only support up to 10,000 IDs. If more than 10,000 IDs are specified, the corresponding get() call will fail with a runtime error.

Arguments:

NameTypeDescription
idsObject[]Array of sitelink IDs.

Return values:

TypeDescription
AdsApp.SitelinkSelectorThe selector restricted to the given IDs.

withLimit(limit)

Specifies limit for the selector to use. For instance, withLimit(50) returns only the first 50 entities.

Arguments:

NameTypeDescription
limitintHow many entities to return.

Return values:

TypeDescription
AdsApp.SitelinkSelectorThe selector with limit applied.

withOnlyLegacy()

Fetches legacy sitelinks.

Return values:

TypeDescription
AdsApp.SitelinkSelectorThe selector with the condition applied.

withOnlyUpgraded()

Fetches upgraded sitelinks.

Return values:

TypeDescription
AdsApp.SitelinkSelectorThe selector with the condition applied.

withResourceNames(resourceNames)

Restricts this selector to return only sitelinks with the given Google Ads API resource names.
const sitelinkResourceNames = [
  'customers/1234567890/extensionFeedItems/111',
  'customers/1234567890/extensionFeedItems/222',
  'customers/1234567890/extensionFeedItems/333',
];
selector = selector.withResourceNames(sitelinkResourceNames);

The resulting selector can be further refined by applying additional conditions to it. The resource name condition will then be AND-ed together with all the other conditions.

The selector can only support up to 10,000 resource names. If more than 10,000 resource names are specified, the corresponding get() call will fail with a runtime error.

Arguments:

NameTypeDescription
resourceNamesString[]Array of sitelink resource names.

Return values:

TypeDescription
AdsApp.SitelinkSelectorThe selector restricted to the given resource names.