MCCアカウント

MCC配下の全ての検索広告のアカウント情報を取得する

MCC配下の全ての検索広告のアカウント情報を取得する


function getAllMccAccounts(){
  const managerAccountId = AdsUtilities.getCurrentAccountId();
  const accountLinks = Search.AccountLinkService.get({
    mccAccountId: managerAccountId,
  }).rval;
  for (let i = 0; i < accountLinks.values.length; i++){
    let accountLink = accountLinks.values[i].accountLink;
    Logger.log('accountId-> ' + accountLink.accountId 
      + ', ownerShipType-> ' + accountLink.ownerShipType);
  }
}