Conversion.update()
を呼び出す
メソッドを使用すると、既存のコンバージョンに次の種類の変更を加えることができます。
- 収益、通貨コード、数量を変更します。
- 変更 advertiser-provided オーダー IDとカスタム Floodlight 変数:
conversion.state
を変更してコンバージョンを削除するACTIVE
~REMOVED
。
検索広告 360 では、次の項目の変更はサポートされていません。
- コンバージョンの日付。
- コンバージョンの種類。
- コンバージョンが貢献したキーワードまたは訪問。
- Floodlight アクティビティまたはアクティビティの名前。
ただし、既存のコンバージョンをいつでも「REMOVED」に設定して、新しいコンバージョンをアップロードすることは可能です。
を、更新済みの日付、タイプ、アトリビューション ID、または Floodlight アクティビティに置き換えます(
新しい conversionId
など)。
Conversion.insert()
と同様に、更新リクエストで複数の URL が指定されている場合は、
検索広告 360 は各コンバージョンをベスト エフォート ベースで更新しようとします。
バッチ全体をオール オア ナッシングのトランザクションとして更新するのではなく、更新のタイミングが
他のインスタンスは成功する可能性があります。詳しくは、
レスポンスを更新して、更新が成功したことを確認します。
更新リクエストを送信する
Conversion.update()
で指定するフィールドのほとんどは、
更新するコンバージョンを特定します。次のいずれかを使用できます。
既存のコンバージョンを特定するには
- コンバージョンの
clickId
を指定する <ph type="x-smartling-placeholder">- </ph>
- 編集するすべてのコンバージョンは、クリック ID の生成から 60 日以内である必要があります。
- コンバージョンの
criterionId
(キーワード ID)を指定する
どちらの方法でも、コンバージョンの conversionId
、conversionTimestamp
、
トランザクション type
。
また、元のコンバージョンで「revenueMicros
」と「currencyCode
」が指定されている場合
または quantityMillis
を指定した場合でも、更新リクエストでこのデータを指定する必要があります。
変更されることはありません。
クリック ID でコンバージョンを特定する
コンバージョンで最初にクリック ID が指定されていた場合は、Conversion.update()
次のフィールドを指定するリクエストです。
clickId
conversionId
conversionTimestamp
type
state
(状態を REMOVED に変更する場合にのみ必須) または ACTIVE)quantityMillis
(元のコンバージョンで指定されている場合のみ)revenueMicros
(元のコンバージョンで指定されている場合のみ)currencyCode
(元のコンバージョンで指定されている場合のみ)
例
既存のコンバージョン 2 つの例を次に示します。
{ "kind": "doubleclicksearch#conversionList", "conversion" : [{ "clickId" : "COiYmPDTv7kCFcP0KgodOzQAAA", "conversionId" : "test_20130906_10", "conversionTimestamp" : "1378710000000", "segmentationType" : "FLOODLIGHT", "segmentationName" : "Test", "type": "TRANSACTION", "revenueMicros": "100000000", // 100 million revenueMicros is equivalent to $100 of revenue "currencyCode": "USD" }, { "clickId": "COiYmPDTv7kCFcP0KgodOzQAAA", "conversionId": "test_1383337059137", "conversionTimestamp": "1378710000000", "segmentationType" : "FLOODLIGHT", "segmentationName" : "Test", "type": "ACTION", "quantityMillis": "1000" }] }
次のリクエストでは、前の例のコンバージョンの 1 つを更新し、 もう一つは、
JSON
なお、Conversion.update()
リクエストは PUT を使用します。
HTTP メソッド。
PUT https://www.googleapis.com/doubleclicksearch/v2/conversion Authorization: Bearer your OAuth 2.0 access token Content-type: application/json { "kind": "doubleclicksearch#conversionList", "conversion": [ { "clickId": "COiYmPDTv7kCFcP0KgodOzQAAA", // Replace with data from your site "conversionId": "test_20130906_10", "conversionTimestamp": "1378710000000", "type": "TRANSACTION", "revenueMicros": "90000000", // 90 million revenueMicros is equivalent to $90 of revenue "currencyCode": "USD" }, { "clickId": "COiYmPDTv7kCFcP0KgodOzQAAA", // Replace with data from your site "conversionId": "test_1383337059137", "conversionTimestamp": "1378710000000", "type": "ACTION", "quantityMillis": "1000", "state": "REMOVED" } ] }
Java
/** * Instantiate the Doubleclicksearch service, create a conversion that updates an existing conversion, * and upload the conversions. */ public static void main(String[] args) throws Exception { Doubleclicksearch service = getService(); // See Set Up Your Application. // Set up a List to keep track of each conversion you create. List<Conversion> conversions = new Vector<Conversion>(); // Create a conversion and add it to the conversion list. // Just to get a little fancy, the updateConversionFromVisit() method can be used for all // visit conversions, including conversions that don't specify quantity, revenue, or currency. // If quantityMillis wasn't specified in the original conversion, specify -1L for the // quantityMillis parameter. Likewise, if revenueMicros wasn't specified originally, // specify -1L for the revenueMicros parameter and an empty string for currency. conversionList = updateConversionFromVisit( conversionList, "COiYmPDTv7kCFcP0KgodOzQAAA", // clickId. Replace with data from your site "test_20130906_10", // conversionId 1378710000000L, // timeStamp "TRANSACTION", // type "", // state -1L, // quantityMillis 90000000L, // revenueMicros. Equivalent to $90 of revenue "USD"); // currencyCode // Here's a conversion that needs to be removed. Just set the state parameter to "REMOVED". conversionList = updateConversionFromVisit( conversionList, "COiYmPDTv7kCFcP0KgodOzQAAA", // clickId. Replace with data from your site "test_1383337059137", // conversionId 1378710000000L, // timeStamp "ACTION", // type "REMOVED", // state 1000L, // quantityMillis -1L, // revenueMicros ""); // currencyCode // Upload the List and handle the response. uploadConversions(conversions, service); // See an example in Add New Conversions. } /** * Create a conversion and add it to a List<Conversion>. */ private static List<Conversion> updateConversionFromVisit(List<Conversion> conversions, String clickId, String conversionId, Long timeStamp, String type, String state, Long quantity, Long revenue, String currency) { // Identifies the existing conversion. Conversion conversion = new Conversion() .setClickId(clickId) .setConversionId(conversionId) .setConversionTimestamp(BigInteger.valueOf(timeStamp)) .setType(type); // Only add these fields if the value is not empty greater than -1. if(!state.isEmpty()) conversion.setState(state); if (quantity > -1L) { conversion.setQuantityMillis(quantity); } if (revenue > -1L) { conversion.setRevenueMicros(revenue); if (!currency.isEmpty()) { conversion.setCurrencyCode(currency); } else { System.err.println(String.format( "Can't add conversion %s. It specifies revenue but no currency.", conversion.getConversionId())); return conversions; } } conversions.add(conversion); return conversions; }
Python
def update_conversion(service): """Change the revenue for one existing conversion and remove another. Args: service: An authorized Doubleclicksearch service. See Set Up Your Application. """ request = service.conversion().update( body= { 'conversion' : [{ 'clickId' : 'COiYmPDTv7kCFcP0KgodOzQAAA', // Replace with data from your site 'conversionId' : 'test_20130906_13', 'conversionTimestamp' : '1378710000000', 'segmentationType' : 'FLOODLIGHT', 'segmentationName' : 'Test', 'type': 'TRANSACTION', 'revenueMicros': '90000000', // 90 million revenueMicros is equivalent to $90 of revenue 'currencyCode': 'USD' }, { 'clickId': 'COiYmPDTv7kCFcP0KgodOzQAAA', // Replace with data from your site 'conversionId': 'test_1383337059137_01', 'conversionTimestamp': '1378710000000', 'segmentationType' : 'FLOODLIGHT', 'segmentationName' : 'Test', 'type': 'ACTION', 'quantityMillis': '1000', 'state': 'REMOVED' }] } ) pprint.pprint(request.execute())
キーワード ID でコンバージョンを特定する
クリック ID にアクセスできない場合、またはコンバージョンが元々
特定のキーワードまたはキーワード/広告に対して、Conversion.update()
リクエストを
次のフィールドを指定します。
criterionId
(キーワード ID)conversionId
conversionTimestamp
type
state
(状態を REMOVED に変更する場合にのみ必須) または ACTIVE)quantityMillis
(元のコンバージョンで指定されている場合のみ)revenueMicros
(元のコンバージョンで指定されている場合のみ)currencyCode
(元のコンバージョンで指定されている場合のみ)
コンバージョンの広告 ID、キャンペーン ID、 必須ではありませんが、上記のリストの ID のみで、検索広告 360 で 既存のコンバージョンを特定します
例
既存のコンバージョンの例を次に示します。
{ "kind": "doubleclicksearch#conversionList", "conversion" : [{ "agencyId": "12300000000000456", "advertiserId": "45600000000010291", "engineAccountId": "700000000042441", "campaignId": "71700000002044839", "adGroupId": "58700000032026064", "criterionId": "43700004289911004", "adId": "44700000155906860", "conversionId": "test_1383157519886", "conversionTimestamp": "1378710000000", "type": "ACTION", "quantityMillis": "1000", "segmentationType": "FLOODLIGHT", "segmentationName": "Test" }] }
次のリクエストは、コンバージョンのタイムスタンプを更新します。
JSON
なお、Conversion.update()
リクエストは PUT を使用します。
HTTP メソッド。
PUT https://www.googleapis.com/doubleclicksearch/v2/conversion Authorization: Bearer your OAuth 2.0 access token Content-type: application/json { "kind": "doubleclicksearch#conversionList", "conversion": [ { "criterionId": "43700004289911004", // Replace with your ID "conversionId": "test_1383157519886", "conversionTimestamp": "1378710000000", "type": "ACTION", "quantityMillis": "3000" } ] }
Java
// Send conversion data to updateConversion, which creates a conversion and adds it // to the conversion list. conversionList = updateConversionFromKeyword(conversionList, 43700004289911004L, // criterionId. Replace with your ID "test_1383157519886", // conversionId 1378710000000L, // timeStamp "ACTION", // type "", // state 3000L, // quantityMillis -1L, // revenueMicros ""); // currencyCode private static List<Conversion> updateConversionFromKeyword(List<Conversion> conversions, Long criterionId, String conversionId, Long timeStamp, String type, String state, Long quantity, Long revenue, String currency ) { Conversion conversion = new Conversion() .setCriterionId(criterionId) .setConversionId(conversionId) .setConversionTimestamp(BigInteger.valueOf(timeStamp)) .setType(type); // Only add these fields if the value is not empty greater than -1. if(!state.isEmpty()) conversion.setState(state); if (quantity > -1L) { conversion.setQuantityMillis(quantity); } if (revenue > -1L) { conversion.setRevenueMicros(revenue); if (!currency.isEmpty()) { conversion.setCurrencyCode(currency); } else { System.err.println(String.format( "Can't add conversion %s. It specifies revenue but no currency.", conversion.getConversionId())); return conversions; } } conversions.add(conversion); return conversions; }
Python
def update_conversion(service): """Change the timestamp of a conversion. Use only the keyword id (criterionId) to identify the conversion. Args: service: An authorized Doubleclicksearch service. See Set Up Your Application. """ request = service.conversion().update( body= { 'conversion': [{ 'criterionId': '43700004289911004', // Replace with your ID 'conversionId': 'test_1383157519886', 'conversionTimestamp': '1378760000000', 'type': 'ACTION', 'quantityMillis': '1000' }] } ) pprint.pprint(request.execute())
検索広告 360 のレスポンスを処理する
更新リクエストに対するレスポンスは挿入に対するレスポンスと同じです リクエスト: 検索広告 360 は、リクエスト内のすべてのコンバージョンが は正常に更新されました。
リクエストが成功すると、レスポンスには検索広告 360 のすべての内部 更新された各コンバージョンの表現(キャンペーン ID、広告グループ ID、キーワードなど) (条件)ID です。
1 つ以上の更新で検証またはアップロードに失敗した場合、レスポンスにはエラーが含まれます。 エラー メッセージが記録されます。レスポンスにコンバージョンに関するメッセージは含まれません。 更新されます これらのエラー メッセージの詳細については、Chronicle の 挿入リクエストに対する検索広告 360 のレスポンス。