Rekomendasi

Rekomendasi dihasilkan secara otomatis oleh Google Ads dan memberikan ide untuk mengoptimalkan akun Anda, seperti menaikkan anggaran kampanye untuk kampanye terbatas atau dengan menambahkan kata kunci yang relevan. Lihat daftar lengkap jenis rekomendasi di Dokumentasi Google Ads API.

Mengambil rekomendasi

Untuk mengambil rekomendasi, gunakan pemilih AdsApp.recommendations(), yang bekerja mirip dengan pemilih lain dalam memungkinkan Anda menentukan kondisi pada jenis rekomendasi yang perlu ditampilkan:

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

Menerapkan rekomendasi

Setelah Anda mengambil rekomendasi, terapkan rekomendasi seperti ini:

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();
  }
}