コンテンツキーワードリスト

コンテンツキーワードリストの情報を取得する

コンテンツキーワードリストの情報を取得する


function main() {
  const accountId = AdsUtilities.getCurrentAccountId();
  const contentKeyword = Display.ContentsKeywordListService.get({
    accountId: accountId
  }).rval;
  if (contentKeyword.totalNumEntries == 0) {
    Logger.log('ContentsKeywordList does not exist.');
    return;
  }
  for (let i = 0; i < contentKeyword.values.length; i++) {
    let contentsKeywordList = contentKeyword.values[i].contentsKeywordList;
    Logger.log('contentsKeywordListId-> ' + contentsKeywordList.contentsKeywordListId
      + ', contentsKeywordListName-> ' + contentsKeywordList.contentsKeywordListName);
  }
}