0
私は〜50のクライアントアカウントを管理するマネージャーアカウントを持っています。私は、各管理アカウントのカスタムレポートを作成し、それぞれのアカウントから繰り返して、それぞれのアカウントから情報を引き出しています。だから私は持っている:AdWordsスクリプト - 有効なアカウントを設定する
//Get an iterator for the managed accounts
var accountIterator = MccApp.accounts()
.withCondition("ManagerCustomerId = 'my id is here'")
.get();
while(accountIterator.hasNext()) {
var currentAccount = accountIterator.next();
//TODO: retrieve information about campaigns under 'currentAccount'
}
は私がAdWordsApp.currentAccount()関数を発見したreference provided by googleを見てみます。その関数が返す値を変更する方法を知りたいので、他のAdWordsApp関数を使用して必要な情報を取得することができます。