सुझाव, 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();
}
}