最高成效廣告活動的必要要素

如要從頭產生新的最高成效廣告活動,至少須有 可建立下列項目:

廣告活動和預算適合用來建立各種類型的廣告活動 資產相關作業則特別適合用來建立 最高成效廣告活動。

請務必熟悉變更策略,因為 指南只提供用於 變更的 JavaScript 物件。

預算

預算不能共用,而且在帳戶中的專屬名稱。使用 CampaignBudgetOperation

const budgetOperation = {
  "campaignBudgetOperation": {
    "create": {
      "resourceName": `customers/${customerId}/campaignBudgets/${getNextTempId()}`,
      "name": "Performance Max campaign budget",
      "amountMicros": "50000000",
      "deliveryMethod": "STANDARD",
      "explicitlyShared": false
    }
  }
}
operations.push(budgetOperation);

廣告活動

廣告活動必須參照先前建立的預算,因此, 使用臨時 ID 指定本身的資源名稱 為了建立廣告活動,您在上一個步驟中設定的資源名稱 用來識別先前在這項要求中建立的預算。 使用 CampaignOperation

const campaignOperation = {
  "campaignOperation": {
    "create": {
      "resourceName": `customers/${customerId}/campaigns/${getNextTempId()}`,
      "name": "Performance Max campaign",
      "status": "PAUSED",
      "advertisingChannelType": "PERFORMANCE_MAX",
      "campaignBudget": budgetOperation.campaignBudgetOperation.create.resourceName,
      "biddingStrategyType": "MAXIMIZE_CONVERSION_VALUE",
      "startDate": "20240314",
      "endDate": "20250313",
      "urlExpansionOptOut": false,
      "maximizeConversionValue": {
        "targetRoas": 3.5
      }
    }
  }
}
operations.push(campaignOperation);

素材資源群組

這個廣告活動的素材資源群組需要廣告活動的參照 將素材資源連結至素材資源時需要參照。使用 AssetGroupOperation

const assetGroupOperation = {
  "assetGroupOperation": {
    "create": {
      "resourceName": `customers/${customerId}/assetGroups/${getNextTempId()}`,
      "campaign": campaignOperation.campaignOperation.create.resourceName,
      "name": "Performance Max asset group",
      "finalUrls": [
        "http://www.example.com"
      ],
      "finalMobileUrls": [
        "http://www.example.com"
      ],
      "status": "PAUSED"
    }
  }
}
operations.push(assetGroupOperation);

現在您已建立素材資源群組和素材資源 (上一步中), 必須相互連結,最高成效廣告活動才能知道 要使用的素材資源您必須在建立用來建立介面的同一要求中執行此操作 建立素材資源群組方法是使用 AssetGroupAssetOperation

您必須提供正確的資產資源名稱、修改 將 fieldType 設為所要連結資產的適當值。確認 填寫有效欄位的完整清單 類型

您需要多次操作,才能達到最低門檻 需求 最高成效廣告活動。

operations.push({
  "assetGroupAssetOperation": {
    "create": {
      "assetGroup": assetGroupOperation.assetGroupOperation.create.resourceName,
      // assetResourceName here is a placeholder; you will need to determine
      // the correct resource name to use depending on which asset you want
      // to add to the asset group.
      "asset": assetResourceName,
      "fieldType": "HEADLINE"
    }
  }
});