推奨事項

最適化案は Google 広告によって自動的に生成され、 キャンペーン予算を増やすなど、アカウントを最適化する 関連性の高いキーワードを追加する。詳しくは、 最適化案の種類を Google Ads API のドキュメント

推奨事項を取得する

推奨事項を取得するには、AdsApp.recommendations() セレクタを使用します。 他のセレクタと同様に機能しますが、 返される最適化案のタイプ:

const selector = AdsApp.recommendations()
  .withCondition('recommendation.type IN (CAMPAIGN_BUDGET)');
const recommendations = selector.get();

推奨事項を適用する

推奨事項を取得したら、次のように適用します。

for (const recommendation of recommendations) {
  // Perform whatever check here that works for your use case.
  // You can also potentially skip this step if you've sufficiently narrowed
  // down what recommendations you're selecting initially with customized
  // withCondition clauses in the previous step.
  if (shouldApply(recommendation)) {
    recommendation.apply();
  }
}