Empfehlungen werden automatisch von Google Ads generiert und enthalten Ideen zur Optimierung Ihres Kontos. So können Sie beispielsweise das Kampagnenbudget für eine eingeschränkte Kampagne erhöhen oder relevante Keywords hinzufügen. Vollständige Liste der
Empfehlungstypen in der Spalte
Dokumentation zur Google Ads API
Empfehlungen abrufen
Verwenden Sie zum Abrufen von Empfehlungen die AdsApp.recommendations()-Auswahl.
der ähnlich wie bei anderen Selektoren funktioniert, da Sie damit Bedingungen für
welche Arten von Empfehlungen zurückgegeben werden sollen:
constselector=AdsApp.recommendations().withCondition('recommendation.type IN (CAMPAIGN_BUDGET)');constrecommendations=selector.get();
Empfehlungen übernehmen
So wenden Sie die Empfehlungen an:
for(constrecommendationofrecommendations){// 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();}}
[null,null,["Zuletzt aktualisiert: 2025-03-04 (UTC)."],[[["Google Ads automatically generates recommendations to optimize your account, including suggestions like budget increases and keyword additions."],["You can retrieve specific recommendations using the `AdsApp.recommendations()` selector and filtering by recommendation type."],["Before applying a recommendation, ensure it aligns with your campaign goals and advertising policies, especially when adding new keywords."],["Applying recommendations is done using the `apply()` method after fetching and potentially filtering them."]]],[]]