コンバージョンの発生元を管理する

Merchant API を使用して、 。

Merchant Center のコンバージョンの発生元を使用すると、コンバージョン データを無料で リスティングウェブサイトのから、 。

Merchant API でコンバージョンの発生元を管理するには、以下を行う必要があります。 自動タグ設定ウェブサイトを申請する必要があります ご確認ください販売アカウントではコンバージョンを 200 件まで獲得可能 あります。

Google アナリティクスを使って、無料で リスティングとウェブサイトです。

Google アナリティクスのプロパティの管理者権限をお持ちの場合は、 Google アナリティクスのコンバージョンを作成して、プロパティを販売アカウントに あります。

次の API リクエストを使用すると、 販売アカウントの ConversionSource オブジェクト Google アナリティクス:

POST  https://merchantapi.googleapis.com/conversions/v1beta/accounts/accountId/

{
 "googleAnalyticsLink": {
   "propertyId": propertyId
  }
}

次のサンプル レスポンスには、ConversionSource オブジェクトが含まれています。Google アナリティクスのコンバージョンの発生元にフィールド「googleAnalyticsLink」が設定されており、 galk: で始まる conversionSourceId

{
  "conversionSourceId": "galk:propertyId",
  "googleAnalyticsLink": {
    "propertyId": "propertyId",
    "attributionSettings": {
       "attributionLookbackWindowDays": 30,
       "atributionModel": "CROSS_CHANNEL_DATA_DRIVEN",
       "conversionType": [
        {
           "name": "purchase",
           "report": true
        }
       ]
   },
   "propertyName": "My Property Name"
  },
 "state": "ACTIVE",
 "controller": "MERCHANT"
}

Google タグを使用する

Google アナリティクスのプロパティをお持ちでない場合は、コンバージョン データを送信できます 直接販売アカウントに関連付けるため、 Google タグGoogle タグ マネージャーを使用すると、 API を使用して既存の Google タグを設定するか、新しいタグを使用して 新しいウェブサイト コンバージョンの発生元を追加すると、自動的に作成されます。

以下は、新しい Pod を作成する accounts.conversionSources ウェブサイトのトラッキング用のオブジェクト:

POST https://merchantapi.googleapis.com/conversions/v1beta/accounts/accountId/

{
  "merchantCenterDestination": {
    "displayName": "My tag destination",
    "attributionSettings": {
      "attributionLookbackWindowDays": 30,
      "attributionModel": "CROSS_CHANNEL_LAST_CLICK"
    },
    "currencyCode": "CHF"
  }
}

ConversionSource オブジェクトを含むレスポンスの例を次に示します。ウェブサイト コンバージョンの発生元に [merchantCenterDestination] フィールドが設定され、 mcdn: で始まる conversionSourceId

{
  "name": "mcdn:12341241234",
  "merchantCenterDestination": {
    "destination": "MC-ABCD1234",
    "attributionSettings": {
      "attributionLookbackWindowDays": 30,
      "attributionModel": "CROSS_CHANNEL_LAST_CLICK"
    },
    "displayName": "My tag destination",
    "currencyCode": "CHF"
  },
  "state": "ACTIVE",
  "controller": "MERCHANT"
}

作成したコンバージョンの発生元の destination は、Google タグを使用して、コンバージョン データをウェブサイトから直接取得できます。

その他の情報

Content API for Shopping からの移行について詳しくは、コンバージョンの移行に関する記事をご確認ください。 ソース管理をご覧ください。