המלצות

ההמלצות נוצרות באופן אוטומטי על ידי Google Ads ומספקות רעיונות דרכים לביצוע אופטימיזציה של החשבון, כמו הגדלת תקציב הקמפיין לקמפיין מוגבל או על ידי הוספת מילות מפתח רלוונטיות. ראה את הרשימה המלאה של בסוגי ההמלצות מאמרי העזרה של 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();
  }
}