क्लिक कन्वर्ज़न अपलोड करें

Google Ads API का इस्तेमाल करके, Google Ads में ऑफ़लाइन क्लिक कन्वर्ज़न अपलोड किए जा सकते हैं. इससे, उन विज्ञापनों को ट्रैक किया जा सकता है जिनकी वजह से ऑफ़लाइन बिक्री हुई है. जैसे, फ़ोन पर या सेल्स रेप्रज़ेंटेटिव की मदद से हुई बिक्री.

सेटअप

ऑफ़लाइन कन्वर्ज़न सेटअप करने के लिए, कुछ ज़रूरी शर्तें पूरी करनी होती हैं. लागू करने से पहले, पक्का करें कि सभी ज़रूरी शर्तें पूरी की गई हों:

  1. अपने Google Ads कन्वर्ज़न ग्राहक में कन्वर्ज़न ट्रैकिंग की सुविधा चालू करें.

  2. टैगिंग और स्टोर क्लिक आईडी कॉन्फ़िगर करें.

1. Google Ads कन्वर्ज़न ग्राहक में कन्वर्ज़न ट्रैकिंग की सुविधा चालू करना

अगर आपने कन्वर्ज़न ट्रैकिंग की शुरू करने के लिए गाइड पढ़ ली है और आपने कन्वर्ज़न ट्रैकिंग की सुविधा चालू कर ली है, तो दूसरा चरण: टैगिंग कॉन्फ़िगर करना पर जाएं.

अपने कन्वर्ज़न ट्रैकिंग सेटअप के बारे में जानकारी पाना

अपने खाते के कन्वर्ज़न ट्रैकिंग सेटअप की जांच की जा सकती है. साथ ही, ConversionTrackingSetting के लिए Customer रिसॉर्स से क्वेरी करके, यह पुष्टि की जा सकती है कि कन्वर्ज़न ट्रैकिंग चालू है या नहीं. GoogleAdsService.SearchStream के साथ यह क्वेरी दें:

SELECT
  customer.conversion_tracking_setting.google_ads_conversion_customer,
  customer.conversion_tracking_setting.conversion_tracking_status,
  customer.conversion_tracking_setting.conversion_tracking_id,
  customer.conversion_tracking_setting.cross_account_conversion_tracking_id
FROM customer

google_ads_conversion_customer फ़ील्ड से उस Google Ads खाते का पता चलता है जो इस ग्राहक के लिए कन्वर्ज़न बनाता और मैनेज करता है. कई खातों में होने वाले कन्वर्ज़न को ट्रैक करने की सुविधा का इस्तेमाल करने वाले ग्राहकों के लिए, यह मैनेजर खाते का आईडी होता है. कन्वर्ज़न बनाने और मैनेज करने के लिए, Google Ads कन्वर्ज़न ग्राहक आईडी को Google Ads API अनुरोधों में customer_id के तौर पर दिया जाना चाहिए. ध्यान दें कि कन्वर्ज़न ट्रैकिंग चालू न होने पर भी, इस फ़ील्ड में जानकारी अपने-आप भर जाती है.

conversion_tracking_status फ़ील्ड से पता चलता है कि कन्वर्ज़न ट्रैकिंग चालू है या नहीं. साथ ही, यह भी पता चलता है कि खाता, कई खातों में होने वाले कन्वर्ज़न को ट्रैक करने की सुविधा का इस्तेमाल कर रहा है या नहीं.

Google Ads कन्वर्ज़न ग्राहक के तहत कन्वर्ज़न ऐक्शन बनाना

अगर conversion_tracking_status की वैल्यू NOT_CONVERSION_TRACKED है, तो इसका मतलब है कि खाते के लिए कन्वर्ज़न ट्रैकिंग की सुविधा चालू नहीं है. Google Ads कन्वर्ज़न खाते में कम से कम एक ConversionAction बनाकर, कन्वर्ज़न ट्रैकिंग की सुविधा चालू करें. उदाहरण के लिए, नीचे दिया गया तरीका अपनाएं. इसके अलावा, आपको जिस कन्वर्ज़न टाइप को चालू करना है उसके लिए, सहायता केंद्र में दिए गए निर्देशों का पालन करके, यूज़र इंटरफ़ेस (यूआई) में कन्वर्ज़न ऐक्शन बनाया जा सकता है.

ध्यान दें कि Google Ads API के ज़रिए भेजे जाने पर, बेहतर कन्वर्ज़न ट्रैकिंग की सुविधा अपने-आप चालू हो जाती है. हालांकि, इसे Google Ads यूज़र इंटरफ़ेस (यूआई) से बंद किया जा सकता है.

कोड का उदाहरण

Java

private void runExample(GoogleAdsClient googleAdsClient, long customerId) {

  // Creates a ConversionAction.
  ConversionAction conversionAction =
      ConversionAction.newBuilder()
          // Note that conversion action names must be unique. If a conversion action already
          // exists with the specified conversion_action_name the create operation will fail with
          // a ConversionActionError.DUPLICATE_NAME error.
          .setName("Earth to Mars Cruises Conversion #" + getPrintableDateTime())
          .setCategory(ConversionActionCategory.DEFAULT)
          .setType(ConversionActionType.WEBPAGE)
          .setStatus(ConversionActionStatus.ENABLED)
          .setViewThroughLookbackWindowDays(15L)
          .setValueSettings(
              ValueSettings.newBuilder()
                  .setDefaultValue(23.41)
                  .setAlwaysUseDefaultValue(true)
                  .build())
          .build();

  // Creates the operation.
  ConversionActionOperation operation =
      ConversionActionOperation.newBuilder().setCreate(conversionAction).build();

  try (ConversionActionServiceClient conversionActionServiceClient =
      googleAdsClient.getLatestVersion().createConversionActionServiceClient()) {
    MutateConversionActionsResponse response =
        conversionActionServiceClient.mutateConversionActions(
            Long.toString(customerId), Collections.singletonList(operation));
    System.out.printf("Added %d conversion actions:%n", response.getResultsCount());
    for (MutateConversionActionResult result : response.getResultsList()) {
      System.out.printf(
          "New conversion action added with resource name: '%s'%n", result.getResourceName());
    }
  }
}
      

C#

public void Run(GoogleAdsClient client, long customerId)
{
    // Get the ConversionActionService.
    ConversionActionServiceClient conversionActionService =
        client.GetService(Services.V18.ConversionActionService);

    // Note that conversion action names must be unique.
    // If a conversion action already exists with the specified name the create operation
    // will fail with a ConversionAction.DUPLICATE_NAME error.
    string ConversionActionName = "Earth to Mars Cruises Conversion #"
        + ExampleUtilities.GetRandomString();

    // Add a conversion action.
    ConversionAction conversionAction = new ConversionAction()
    {
        Name = ConversionActionName,
        Category = ConversionActionCategory.Default,
        Type = ConversionActionType.Webpage,
        Status = ConversionActionStatus.Enabled,
        ViewThroughLookbackWindowDays = 15,
        ValueSettings = new ConversionAction.Types.ValueSettings()
        {
            DefaultValue = 23.41,
            AlwaysUseDefaultValue = true
        }
    };

    // Create the operation.
    ConversionActionOperation operation = new ConversionActionOperation()
    {
        Create = conversionAction
    };

    try
    {
        // Create the conversion action.
        MutateConversionActionsResponse response =
            conversionActionService.MutateConversionActions(customerId.ToString(),
                    new ConversionActionOperation[] { operation });

        // Display the results.
        foreach (MutateConversionActionResult newConversionAction in response.Results)
        {
            Console.WriteLine($"New conversion action with resource name = " +
                $"'{newConversionAction.ResourceName}' was added.");
        }
    }
    catch (GoogleAdsException e)
    {
        Console.WriteLine("Failure:");
        Console.WriteLine($"Message: {e.Message}");
        Console.WriteLine($"Failure: {e.Failure}");
        Console.WriteLine($"Request ID: {e.RequestId}");
        throw;
    }
}
      

PHP

public static function runExample(GoogleAdsClient $googleAdsClient, int $customerId)
{
    // Creates a conversion action.
    $conversionAction = new ConversionAction([
        // Note that conversion action names must be unique.
        // If a conversion action already exists with the specified conversion_action_name
        // the create operation will fail with a ConversionActionError.DUPLICATE_NAME error.
        'name' => 'Earth to Mars Cruises Conversion #' . Helper::getPrintableDatetime(),
        'category' => ConversionActionCategory::PBDEFAULT,
        'type' => ConversionActionType::WEBPAGE,
        'status' => ConversionActionStatus::ENABLED,
        'view_through_lookback_window_days' => 15,
        'value_settings' => new ValueSettings([
            'default_value' => 23.41,
            'always_use_default_value' => true
        ])
    ]);

    // Creates a conversion action operation.
    $conversionActionOperation = new ConversionActionOperation();
    $conversionActionOperation->setCreate($conversionAction);

    // Issues a mutate request to add the conversion action.
    $conversionActionServiceClient = $googleAdsClient->getConversionActionServiceClient();
    $response = $conversionActionServiceClient->mutateConversionActions(
        MutateConversionActionsRequest::build($customerId, [$conversionActionOperation])
    );

    printf("Added %d conversion actions:%s", $response->getResults()->count(), PHP_EOL);

    foreach ($response->getResults() as $addedConversionAction) {
        /** @var ConversionAction $addedConversionAction */
        printf(
            "New conversion action added with resource name: '%s'%s",
            $addedConversionAction->getResourceName(),
            PHP_EOL
        );
    }
}
      

Python

def main(client, customer_id):
    conversion_action_service = client.get_service("ConversionActionService")

    # Create the operation.
    conversion_action_operation = client.get_type("ConversionActionOperation")

    # Create conversion action.
    conversion_action = conversion_action_operation.create

    # Note that conversion action names must be unique. If a conversion action
    # already exists with the specified conversion_action_name, the create
    # operation will fail with a ConversionActionError.DUPLICATE_NAME error.
    conversion_action.name = f"Earth to Mars Cruises Conversion {uuid.uuid4()}"
    conversion_action.type_ = (
        client.enums.ConversionActionTypeEnum.UPLOAD_CLICKS
    )
    conversion_action.category = (
        client.enums.ConversionActionCategoryEnum.DEFAULT
    )
    conversion_action.status = client.enums.ConversionActionStatusEnum.ENABLED
    conversion_action.view_through_lookback_window_days = 15

    # Create a value settings object.
    value_settings = conversion_action.value_settings
    value_settings.default_value = 15.0
    value_settings.always_use_default_value = True

    # Add the conversion action.
    conversion_action_response = (
        conversion_action_service.mutate_conversion_actions(
            customer_id=customer_id,
            operations=[conversion_action_operation],
        )
    )

    print(
        "Created conversion action "
        f'"{conversion_action_response.results[0].resource_name}".'
    )
      

Ruby

def add_conversion_action(customer_id)
  # GoogleAdsClient will read a config file from
  # ENV['HOME']/google_ads_config.rb when called without parameters
  client = Google::Ads::GoogleAds::GoogleAdsClient.new


  # Add a conversion action.
  conversion_action = client.resource.conversion_action do |ca|
    ca.name = "Earth to Mars Cruises Conversion #{(Time.new.to_f * 100).to_i}"
    ca.type = :UPLOAD_CLICKS
    ca.category = :DEFAULT
    ca.status = :ENABLED
    ca.view_through_lookback_window_days = 15

    # Create a value settings object.
    ca.value_settings = client.resource.value_settings do |vs|
      vs.default_value = 15
      vs.always_use_default_value = true
    end
  end

  # Create the operation.
  conversion_action_operation = client.operation.create_resource.conversion_action(conversion_action)

  # Add the ad group ad.
  response = client.service.conversion_action.mutate_conversion_actions(
    customer_id: customer_id,
    operations: [conversion_action_operation],
  )

  puts "New conversion action with resource name = #{response.results.first.resource_name}."
end
      

Perl

sub add_conversion_action {
  my ($api_client, $customer_id) = @_;

  # Note that conversion action names must be unique.
  # If a conversion action already exists with the specified conversion_action_name,
  # the create operation fails with error ConversionActionError.DUPLICATE_NAME.
  my $conversion_action_name = "Earth to Mars Cruises Conversion #" . uniqid();

  # Create a conversion action.
  my $conversion_action =
    Google::Ads::GoogleAds::V18::Resources::ConversionAction->new({
      name                          => $conversion_action_name,
      category                      => DEFAULT,
      type                          => WEBPAGE,
      status                        => ENABLED,
      viewThroughLookbackWindowDays => 15,
      valueSettings                 =>
        Google::Ads::GoogleAds::V18::Resources::ValueSettings->new({
          defaultValue          => 23.41,
          alwaysUseDefaultValue => "true"
        })});

  # Create a conversion action operation.
  my $conversion_action_operation =
    Google::Ads::GoogleAds::V18::Services::ConversionActionService::ConversionActionOperation
    ->new({create => $conversion_action});

  # Add the conversion action.
  my $conversion_actions_response =
    $api_client->ConversionActionService()->mutate({
      customerId => $customer_id,
      operations => [$conversion_action_operation]});

  printf "New conversion action added with resource name: '%s'.\n",
    $conversion_actions_response->{results}[0]{resourceName};

  return 1;
}
      

पक्का करें कि conversion_action_type, सही ConversionActionType वैल्यू पर सेट हो. Google Ads API में कन्वर्ज़न ऐक्शन बनाने के बारे में ज़्यादा जानकारी के लिए, कन्वर्ज़न ऐक्शन बनाना लेख पढ़ें.

किसी मौजूदा कन्वर्ज़न ऐक्शन को वापस लाना

किसी मौजूदा कन्वर्ज़न ऐक्शन की जानकारी पाने के लिए, यह क्वेरी दें. पक्का करें कि अनुरोध में मौजूद ग्राहक आईडी, उस Google Ads कन्वर्ज़न ग्राहक पर सेट हो जिसकी पहचान आपने ऊपर की है. साथ ही, कन्वर्ज़न ऐक्शन टाइप, सही ConversionActionType वैल्यू पर सेट हो.

SELECT
  conversion_action.resource_name,
  conversion_action.name,
  conversion_action.status
FROM conversion_action
WHERE conversion_action.type = 'INSERT_CONVERSION_ACTION_TYPE'

2. टैगिंग और स्टोर क्लिक आईडी कॉन्फ़िगर करना

ऑटो-टैगिंग की सुविधा चालू है या नहीं, इसकी पुष्टि करने के लिए निर्देशों का पालन करें. साथ ही, अपने विज्ञापनों के लिए हर इंप्रेशन और क्लिक का GCLID, GBRAID या WBRAID कैप्चर और सेव करने के लिए, अपना Google Ads खाता, वेबसाइट, और लीड-ट्रैकिंग सिस्टम सेट अप करें. नए खातों के लिए, ऑटो-टैगिंग की सुविधा डिफ़ॉल्ट रूप से चालू होती है.

अनुरोध बनाना

UploadClickConversionsRequest को बनाने और उसके फ़ील्ड को सही वैल्यू पर सेट करने के लिए, नीचे दिए गए निर्देशों का पालन करें.

customer_id

आपके अपलोड किए गए डेटा के Google Ads खाते की पहचान करता है. इसे उस खाते के Google Ads कन्वर्ज़न ग्राहक पर सेट करें जो क्लिक का सोर्स है.

job_id

ऑफ़लाइन डेटा डाइग्नोस्टिक्स में, हर जॉब की जानकारी के साथ अपलोड के अनुरोधों को जोड़ने का तरीका उपलब्ध कराता है.

अगर इस फ़ील्ड को सेट नहीं किया जाता है, तो Google Ads API हर अनुरोध के लिए, [2^31, 2^63) की रेंज में एक यूनीक वैल्यू असाइन करता है. अगर आपको एक से ज़्यादा अनुरोधों को एक लॉजिकल जॉब में ग्रुप करना है, तो अपनी जॉब के हर अनुरोध के लिए, इस फ़ील्ड को [0, 2^31) की रेंज में एक ही वैल्यू पर सेट करें.

response में मौजूद job_id में, अनुरोध के लिए जॉब आईडी होता है. भले ही, आपने कोई वैल्यू तय की हो या Google Ads API को वैल्यू असाइन करने की अनुमति दी हो.

partial_failure_enabled

इससे यह तय होता है कि Google Ads API, ऑपरेशन से जुड़ी गड़बड़ियों को कैसे मैनेज करता है.

इस फ़ील्ड को true पर सेट करना ज़रूरी है. रिस्पॉन्स प्रोसेस करते समय, कुछ हद तक फ़ेल होने के दिशा-निर्देशों का पालन करें.

debug_enabled

लीड के लिए बेहतर कन्वर्ज़न ट्रैकिंग अपलोड के लिए, गड़बड़ी की रिपोर्टिंग के व्यवहार का पता लगाता है. gclid, gbraid या wbraid का इस्तेमाल करके क्लिक कन्वर्ज़न के लिए अपलोड मैनेज करते समय, Google Ads API इस फ़ील्ड को अनदेखा करता है.

क्लिक कन्वर्ज़न ऑपरेशन बनाना

आपके UploadClickConversionRequest में मौजूद ClickConversion ऑब्जेक्ट का कलेक्शन, उन कन्वर्ज़न का सेट तय करता है जिन्हें आपको अपलोड करना है. हर ClickConversion बनाने और उसके फ़ील्ड को सही वैल्यू पर सेट करने के लिए, नीचे दिए गए निर्देशों का पालन करें.

हर कन्वर्ज़न ऑपरेशन के लिए ज़रूरी फ़ील्ड सेट करना

ClickConversion के ज़रूरी फ़ील्ड को सही वैल्यू पर सेट करने के लिए, नीचे दिए गए निर्देशों का पालन करें.

gclid, gbraid, wbraid
कन्वर्ज़न के क्लिक या इंप्रेशन के लिए, क्लिक के समय कैप्चर किया गया आइडेंटिफ़ायर. इनमें से सिर्फ़ एक फ़ील्ड सेट करें.
conversion_date_time

कन्वर्ज़न की तारीख और समय.

वैल्यू में टाइमज़ोन की जानकारी होनी चाहिए. साथ ही, फ़ॉर्मैट yyyy-mm-dd HH:mm:ss+|-HH:mm होना चाहिए. उदाहरण के लिए: 2022-01-01 19:32:45-05:00 (डेलाइट सेविंग टाइम को अनदेखा करना) .

टाइमज़ोन की वैल्यू किसी भी मान्य वैल्यू के लिए हो सकती है: इसे खाते के टाइमज़ोन से मैच करने की ज़रूरत नहीं है. हालांकि, अगर आपको अपलोड किए गए कन्वर्ज़न डेटा की तुलना, Google Ads यूज़र इंटरफ़ेस (यूआई) में मौजूद डेटा से करनी है, तो हमारा सुझाव है कि आप अपने Google Ads खाते के टाइमज़ोन का इस्तेमाल करें, ताकि कन्वर्ज़न की संख्या मैच हो सके. ज़्यादा जानकारी और उदाहरणों के लिए, सहायता केंद्र पर जाएं. साथ ही, मान्य टाइमज़ोन आईडी की सूची के लिए, कोड और फ़ॉर्मैट देखें.

user_identifiers

सिर्फ़ क्लिक आईडी का इस्तेमाल करके कन्वर्ज़न अपलोड करते समय, इस फ़ील्ड को सेट न करें. अगर यह फ़ील्ड सेट है, तो Google Ads अपलोड ऑपरेशन को लीड के लिए बेहतर कन्वर्ज़न ट्रैकिंग के लिए अपलोड के तौर पर मानता है.

conversion_action

क्लिक कन्वर्ज़न के लिए, ConversionAction के रिसॉर्स का नाम.

कन्वर्ज़न ऐक्शन का type UPLOAD_CLICKS होना चाहिए. साथ ही, यह क्लिक से जुड़े Google Ads खाते के Google Ads कन्वर्ज़न ग्राहक में मौजूद होना चाहिए.

conversion_value

कन्वर्ज़न की वैल्यू.

currency_code

conversion_value की मुद्रा का कोड.

हर कन्वर्ज़न ऑपरेशन के लिए वैकल्पिक फ़ील्ड सेट करना

यहां दिए गए वैकल्पिक फ़ील्ड की सूची देखें और ज़रूरत के हिसाब से उन्हें अपने ClickConversion पर सेट करें.

order_id
कन्वर्ज़न के लिए लेन-देन आईडी. इस फ़ील्ड को भरना ज़रूरी नहीं है. हालांकि, इसका सुझाव दिया जाता है. अगर आपने इसे अपलोड के दौरान सेट किया है, तो कन्वर्ज़न में किए गए किसी भी अडजस्टमेंट के लिए, आपको इसका इस्तेमाल करना होगा.
external_attribution_data

अगर कन्वर्ज़न ट्रैक करने के लिए, तीसरे पक्ष के टूल या इन-हाउस सलूशन का इस्तेमाल किया जाता है, तो हो सकता है कि आप Google Ads को कन्वर्ज़न का सिर्फ़ कुछ हिस्सा दें. इसके अलावा, हो सकता है कि आप कन्वर्ज़न का क्रेडिट कई क्लिक के बीच बांटना चाहें. बाहरी एट्रिब्यूशन वाले कन्वर्ज़न इंपोर्ट की मदद से, हर क्लिक को असाइन किए गए क्रेडिट के साथ कन्वर्ज़न अपलोड किए जा सकते हैं.

फ़्रैक्शनल क्रेडिट अपलोड करने के लिए, इस फ़ील्ड को ExternalAttributionData ऑब्जेक्ट पर सेट करें. इसमें external_attribution_model और external_attribution_credit की वैल्यू होनी चाहिए.

custom_variables

कस्टम कन्वर्ज़न वैरिएबल की वैल्यू.

Google Ads, wbraid या gbraid के साथ कस्टम कन्वर्ज़न वैरिएबल का इस्तेमाल नहीं करता.

cart_data

cart_data फ़ील्ड में, ClickConversion के लिए शॉपिंग कार्ट की जानकारी शामिल की जा सकती है. इसमें ये एट्रिब्यूट शामिल होते हैं:

  • merchant_id: इससे जुड़े Merchant Center खाते का आईडी.
  • feed_country_code: Merchant Center फ़ीड के इलाके का ISO 3166 दो वर्णों वाला कोड.
  • feed_language_code: Merchant Center फ़ीड की भाषा का ISO 639-1 कोड.
  • local_transaction_cost: ClickConversion के currency_code में, लेन-देन के लेवल पर मिलने वाली सभी छूट का योग.
  • items: शॉपिंग कार्ट में मौजूद आइटम.

items में मौजूद हर आइटम में ये एट्रिब्यूट होते हैं:

  • product_id: प्रॉडक्ट का आईडी. इसे कभी-कभी ऑफ़र आईडी या आइटम आईडी भी कहा जाता है.
  • quantity: आइटम की संख्या.
  • unit_price: आइटम की इकाई की कीमत.

conversion_environment

इससे उस एनवायरमेंट के बारे में पता चलता है जहां यह कन्वर्ज़न रिकॉर्ड किया गया था. उदाहरण के लिए, ऐप्लिकेशन या वेब.

कोड का उदाहरण

Java

private void runExample(
    GoogleAdsClient googleAdsClient,
    long customerId,
    long conversionActionId,
    String gclid,
    String gbraid,
    String wbraid,
    String conversionDateTime,
    Double conversionValue,
    Long conversionCustomVariableId,
    String conversionCustomVariableValue,
    String orderId,
    ConsentStatus adUserDataConsent)
    throws InvalidProtocolBufferException {
  // Verifies that exactly one of gclid, gbraid, and wbraid is specified, as required.
  // See https://developers.google.com/google-ads/api/docs/conversions/upload-clicks for details.
  long numberOfIdsSpecified =
      Arrays.asList(gclid, gbraid, wbraid).stream().filter(idField -> idField != null).count();
  if (numberOfIdsSpecified != 1) {
    throw new IllegalArgumentException(
        "Exactly 1 of gclid, gbraid, or wbraid is required, but "
            + numberOfIdsSpecified
            + " ID values were provided");
  }

  // Constructs the conversion action resource name from the customer and conversion action IDs.
  String conversionActionResourceName =
      ResourceNames.conversionAction(customerId, conversionActionId);

  // Creates the click conversion.
  ClickConversion.Builder clickConversionBuilder =
      ClickConversion.newBuilder()
          .setConversionAction(conversionActionResourceName)
          .setConversionDateTime(conversionDateTime)
          .setConversionValue(conversionValue)
          .setCurrencyCode("USD");

  // Sets the single specified ID field.
  if (gclid != null) {
    clickConversionBuilder.setGclid(gclid);
  } else if (gbraid != null) {
    clickConversionBuilder.setGbraid(gbraid);
  } else {
    clickConversionBuilder.setWbraid(wbraid);
  }

  if (conversionCustomVariableId != null && conversionCustomVariableValue != null) {
    // Sets the custom variable and value, if provided.
    clickConversionBuilder.addCustomVariables(
        CustomVariable.newBuilder()
            .setConversionCustomVariable(
                ResourceNames.conversionCustomVariable(customerId, conversionCustomVariableId))
            .setValue(conversionCustomVariableValue));
  }

  if (orderId != null) {
    // Sets the order ID (unique transaction ID), if provided.
    clickConversionBuilder.setOrderId(orderId);
  }

  // Sets the consent information, if provided.
  if (adUserDataConsent != null) {
    // Specifies whether user consent was obtained for the data you are uploading. See
    // https://www.google.com/about/company/user-consent-policy for details.
    clickConversionBuilder.setConsent(Consent.newBuilder().setAdUserData(adUserDataConsent));
  }
  ClickConversion clickConversion = clickConversionBuilder.build();

  // Creates the conversion upload service client.
  try (ConversionUploadServiceClient conversionUploadServiceClient =
      googleAdsClient.getLatestVersion().createConversionUploadServiceClient()) {
    // Uploads the click conversion. Partial failure should always be set to true.

    // NOTE: This request contains a single conversion as a demonstration.  However, if you have
    // multiple conversions to upload, it's best to upload multiple conversions per request
    // instead of sending a separate request per conversion. See the following for per-request
    // limits:
    // https://developers.google.com/google-ads/api/docs/best-practices/quotas#conversion_upload_service
    UploadClickConversionsResponse response =
        conversionUploadServiceClient.uploadClickConversions(
            UploadClickConversionsRequest.newBuilder()
                .setCustomerId(Long.toString(customerId))
                .addConversions(clickConversion)
                // Enables partial failure (must be true).
                .setPartialFailure(true)
                .build());

    // Prints any partial errors returned.
    if (response.hasPartialFailureError()) {
      GoogleAdsFailure googleAdsFailure =
          ErrorUtils.getInstance().getGoogleAdsFailure(response.getPartialFailureError());
      // Constructs a protocol buffer printer that will print error details in a concise format.
      Printer errorPrinter = JsonFormat.printer().omittingInsignificantWhitespace();
      for (int operationIndex = 0;
          operationIndex < response.getResultsCount();
          operationIndex++) {
        ClickConversionResult conversionResult = response.getResults(operationIndex);
        if (ErrorUtils.getInstance().isPartialFailureResult(conversionResult)) {
          // Prints the errors for the failed operation.
          System.out.printf("Operation %d failed with the following errors:%n", operationIndex);
          for (GoogleAdsError resultError :
              ErrorUtils.getInstance().getGoogleAdsErrors(operationIndex, googleAdsFailure)) {
            // Prints the error with newlines and extra spaces removed.
            System.out.printf("  %s%n", errorPrinter.print(resultError));
          }
        } else {
          // Prints the information about the successful operation.
          StringBuilder clickInfoBuilder =
              new StringBuilder("conversion that occurred at ")
                  .append(String.format("'%s' ", conversionResult.getConversionDateTime()))
                  .append("with ");
          if (conversionResult.hasGclid()) {
            clickInfoBuilder.append(String.format("gclid '%s'", conversionResult.getGclid()));
          } else if (!conversionResult.getGbraid().isEmpty()) {
            clickInfoBuilder.append(String.format("gbraid '%s'", conversionResult.getGbraid()));
          } else if (!conversionResult.getWbraid().isEmpty()) {
            clickInfoBuilder.append(String.format("wbraid '%s'", conversionResult.getWbraid()));
          } else {
            clickInfoBuilder.append("no click ID");
          }
          System.out.printf("Operation %d for %s succeeded.%n", operationIndex, clickInfoBuilder);
        }
      }
    }
  }
}
      

C#

public void Run(GoogleAdsClient client, long customerId, long conversionActionId,
    string gclid, string gbraid, string wbraid, string conversionTime,
    double conversionValue, ConsentStatus? adUserDataConsent)
{
    // Get the ConversionActionService.
    ConversionUploadServiceClient conversionUploadService =
        client.GetService(Services.V18.ConversionUploadService);

    // Creates a click conversion by specifying currency as USD.
    ClickConversion clickConversion = new ClickConversion()
    {
        ConversionAction = ResourceNames.ConversionAction(customerId, conversionActionId),
        ConversionValue = conversionValue,
        ConversionDateTime = conversionTime,
        CurrencyCode = "USD",
    };

    // Sets the consent information, if provided.
    if (adUserDataConsent != null)
    {
        // Specifies whether user consent was obtained for the data you are uploading. See
        // https://www.google.com/about/company/user-consent-policy
        // for details.
        clickConversion.Consent = new Consent()
        {
            AdUserData = (ConsentStatus)adUserDataConsent
        };
    }

    // Verifies that exactly one of gclid, gbraid, and wbraid is specified, as required.
    // See https://developers.google.com/google-ads/api/docs/conversions/upload-clicks
    // for details.
    string[] ids = { gclid, gbraid, wbraid };
    int idCount = ids.Where(id => !string.IsNullOrEmpty(id)).Count();

    if (idCount != 1)
    {
        throw new ArgumentException($"Exactly 1 of gclid, gbraid, or wbraid is " +
            $"required, but {idCount} ID values were provided");
    }

    // Sets the single specified ID field.
    if (!string.IsNullOrEmpty(gclid))
    {
        clickConversion.Gclid = gclid;
    }
    else if (!string.IsNullOrEmpty(wbraid))
    {
        clickConversion.Wbraid = wbraid;
    }
    else if (!string.IsNullOrEmpty(gbraid))
    {
        clickConversion.Gbraid = gbraid;
    }

    try
    {
        // Issues a request to upload the click conversion.
        UploadClickConversionsResponse response =
            conversionUploadService.UploadClickConversions(
                new UploadClickConversionsRequest()
                {
                    CustomerId = customerId.ToString(),
                    Conversions = { clickConversion },
                    PartialFailure = true,
                    ValidateOnly = false
                });

        // Prints the result.
        ClickConversionResult uploadedClickConversion = response.Results[0];
        Console.WriteLine($"Uploaded conversion that occurred at " +
            $"'{uploadedClickConversion.ConversionDateTime}' from Google " +
            $"Click ID '{uploadedClickConversion.Gclid}' to " +
            $"'{uploadedClickConversion.ConversionAction}'.");
    }
    catch (GoogleAdsException e)
    {
        Console.WriteLine("Failure:");
        Console.WriteLine($"Message: {e.Message}");
        Console.WriteLine($"Failure: {e.Failure}");
        Console.WriteLine($"Request ID: {e.RequestId}");
        throw;
    }
}
      

PHP

public static function runExample(
    GoogleAdsClient $googleAdsClient,
    int $customerId,
    int $conversionActionId,
    ?string $gclid,
    ?string $gbraid,
    ?string $wbraid,
    ?string $orderId,
    string $conversionDateTime,
    float $conversionValue,
    ?string $conversionCustomVariableId,
    ?string $conversionCustomVariableValue,
    ?int $adUserDataConsent
) {
    // Verifies that exactly one of gclid, gbraid, and wbraid is specified, as required.
    // See https://developers.google.com/google-ads/api/docs/conversions/upload-clicks for details.
    $nonNullFields = array_filter(
        [$gclid, $gbraid, $wbraid],
        function ($field) {
            return !is_null($field);
        }
    );
    if (count($nonNullFields) !== 1) {
        throw new \UnexpectedValueException(
            sprintf(
                "Exactly 1 of gclid, gbraid or wbraid is required, but %d ID values were "
                . "provided",
                count($nonNullFields)
            )
        );
    }

    // Creates a click conversion by specifying currency as USD.
    $clickConversion = new ClickConversion([
        'conversion_action' =>
            ResourceNames::forConversionAction($customerId, $conversionActionId),
        'conversion_value' => $conversionValue,
        'conversion_date_time' => $conversionDateTime,
        'currency_code' => 'USD'
    ]);
    // Sets the single specified ID field.
    if (!is_null($gclid)) {
        $clickConversion->setGclid($gclid);
    } elseif (!is_null($gbraid)) {
        $clickConversion->setGbraid($gbraid);
    } else {
        $clickConversion->setWbraid($wbraid);
    }

    if (!is_null($conversionCustomVariableId) && !is_null($conversionCustomVariableValue)) {
        $clickConversion->setCustomVariables([new CustomVariable([
            'conversion_custom_variable' => ResourceNames::forConversionCustomVariable(
                $customerId,
                $conversionCustomVariableId
            ),
            'value' => $conversionCustomVariableValue
        ])]);
    }
    // Sets the consent information, if provided.
    if (!empty($adUserDataConsent)) {
        // Specifies whether user consent was obtained for the data you are uploading. See
        // https://www.google.com/about/company/user-consent-policy for details.
        $clickConversion->setConsent(new Consent(['ad_user_data' => $adUserDataConsent]));
    }

    if (!empty($orderId)) {
        // Sets the order ID (unique transaction ID), if provided.
        $clickConversion->setOrderId($orderId);
    }

    // Issues a request to upload the click conversion.
    $conversionUploadServiceClient = $googleAdsClient->getConversionUploadServiceClient();
    /** @var UploadClickConversionsResponse $response */
    // NOTE: This request contains a single conversion as a demonstration.  However, if you have
    // multiple conversions to upload, it's best to upload multiple conversions per request
    // instead of sending a separate request per conversion. See the following for per-request
    // limits:
    // https://developers.google.com/google-ads/api/docs/best-practices/quotas#conversion_upload_service
    $response = $conversionUploadServiceClient->uploadClickConversions(
        // Uploads the click conversion. Partial failure should always be set to true.
        UploadClickConversionsRequest::build($customerId, [$clickConversion], true)
    );

    // Prints the status message if any partial failure error is returned.
    // Note: The details of each partial failure error are not printed here, you can refer to
    // the example HandlePartialFailure.php to learn more.
    if ($response->hasPartialFailureError()) {
        printf(
            "Partial failures occurred: '%s'.%s",
            $response->getPartialFailureError()->getMessage(),
            PHP_EOL
        );
    } else {
        // Prints the result if exists.
        /** @var ClickConversionResult $uploadedClickConversion */
        $uploadedClickConversion = $response->getResults()[0];
        printf(
            "Uploaded click conversion that occurred at '%s' from Google Click ID '%s' " .
            "to '%s'.%s",
            $uploadedClickConversion->getConversionDateTime(),
            $uploadedClickConversion->getGclid(),
            $uploadedClickConversion->getConversionAction(),
            PHP_EOL
        );
    }
}
      

Python

def main(
    client,
    customer_id,
    conversion_action_id,
    gclid,
    conversion_date_time,
    conversion_value,
    conversion_custom_variable_id,
    conversion_custom_variable_value,
    gbraid,
    wbraid,
    order_id,
    ad_user_data_consent,
):
    """Creates a click conversion with a default currency of USD.

    Args:
        client: An initialized GoogleAdsClient instance.
        customer_id: The client customer ID string.
        conversion_action_id: The ID of the conversion action to upload to.
        gclid: The Google Click Identifier ID. If set, the wbraid and gbraid
            parameters must be None.
        conversion_date_time: The the date and time of the conversion (should be
            after the click time). The format is 'yyyy-mm-dd hh:mm:ss+|-hh:mm',
            e.g. '2021-01-01 12:32:45-08:00'.
        conversion_value: The conversion value in the desired currency.
        conversion_custom_variable_id: The ID of the conversion custom
            variable to associate with the upload.
        conversion_custom_variable_value: The str value of the conversion custom
            variable to associate with the upload.
        gbraid: The GBRAID for the iOS app conversion. If set, the gclid and
            wbraid parameters must be None.
        wbraid: The WBRAID for the iOS app conversion. If set, the gclid and
            gbraid parameters must be None.
        order_id: The order ID for the click conversion.
        ad_user_data_consent: The ad user data consent for the click.
    """
    click_conversion = client.get_type("ClickConversion")
    conversion_upload_service = client.get_service("ConversionUploadService")
    conversion_action_service = client.get_service("ConversionActionService")
    click_conversion.conversion_action = (
        conversion_action_service.conversion_action_path(
            customer_id, conversion_action_id
        )
    )

    # Sets the single specified ID field.
    if gclid:
        click_conversion.gclid = gclid
    elif gbraid:
        click_conversion.gbraid = gbraid
    else:
        click_conversion.wbraid = wbraid

    click_conversion.conversion_value = float(conversion_value)
    click_conversion.conversion_date_time = conversion_date_time
    click_conversion.currency_code = "USD"

    if conversion_custom_variable_id and conversion_custom_variable_value:
        conversion_custom_variable = client.get_type("CustomVariable")
        conversion_custom_variable.conversion_custom_variable = (
            conversion_upload_service.conversion_custom_variable_path(
                customer_id, conversion_custom_variable_id
            )
        )
        conversion_custom_variable.value = conversion_custom_variable_value
        click_conversion.custom_variables.append(conversion_custom_variable)

    if order_id:
        click_conversion.order_id = order_id

    # Sets the consent information, if provided.
    if ad_user_data_consent:
        # Specifies whether user consent was obtained for the data you are
        # uploading. For more details, see:
        # https://www.google.com/about/company/user-consent-policy
        click_conversion.consent.ad_user_data = client.enums.ConsentStatusEnum[
            ad_user_data_consent
        ]

    # Uploads the click conversion. Partial failure must be set to True here.
    #
    # NOTE: This request only uploads a single conversion, but if you have
    # multiple conversions to upload, it's most efficient to upload them in a
    # single request. See the following for per-request limits for reference:
    # https://developers.google.com/google-ads/api/docs/best-practices/quotas#conversion_upload_service
    request = client.get_type("UploadClickConversionsRequest")
    request.customer_id = customer_id
    request.conversions.append(click_conversion)
    request.partial_failure = True
    conversion_upload_response = (
        conversion_upload_service.upload_click_conversions(
            request=request,
        )
    )
    uploaded_click_conversion = conversion_upload_response.results[0]
    print(
        f"Uploaded conversion that occurred at "
        f'"{uploaded_click_conversion.conversion_date_time}" from '
        f'Google Click ID "{uploaded_click_conversion.gclid}" '
        f'to "{uploaded_click_conversion.conversion_action}"'
    )
      

Ruby

def upload_offline_conversion(
  customer_id,
  conversion_action_id,
  gclid,
  gbraid,
  wbraid,
  conversion_date_time,
  conversion_value,
  conversion_custom_variable_id,
  conversion_custom_variable_value,
  ad_user_data_consent)
  # GoogleAdsClient will read a config file from
  # ENV['HOME']/google_ads_config.rb when called without parameters
  client = Google::Ads::GoogleAds::GoogleAdsClient.new

  # Verifies that exactly one of gclid, gbraid, and wbraid is specified, as required.
  # See https://developers.google.com/google-ads/api/docs/conversions/upload-clicks for details.
  identifiers_specified = [gclid, gbraid, wbraid].reject {|v| v.nil?}.count
  if identifiers_specified != 1
    raise "Must specify exactly one of GCLID, GBRAID, and WBRAID. " \
      "#{identifiers_specified} values were provided."
  end

  click_conversion = client.resource.click_conversion do |cc|
    cc.conversion_action = client.path.conversion_action(customer_id, conversion_action_id)
    # Sets the single specified ID field.
    if !gclid.nil?
      cc.gclid = gclid
    elsif !gbraid.nil?
      cc.gbraid = gbraid
    else
      cc.wbraid = wbraid
    end
    cc.conversion_value = conversion_value.to_f
    cc.conversion_date_time = conversion_date_time
    cc.currency_code = 'USD'
    if conversion_custom_variable_id && conversion_custom_variable_value
      cc.custom_variables << client.resource.custom_variable do |cv|
        cv.conversion_custom_variable = client.path.conversion_custom_variable(
          customer_id, conversion_custom_variable_id)
        cv.value = conversion_custom_variable_value
      end
    end
    # Sets the consent information, if provided.
    unless ad_user_data_consent.nil?
      cc.consent = client.resource.consent do |c|
        # Specifies whether user consent was obtained for the data you are
        # uploading. For more details, see:
        # https://www.google.com/about/company/user-consent-policy
        c.ad_user_data = ad_user_data_consent
      end
    end
  end

  response = client.service.conversion_upload.upload_click_conversions(
    customer_id: customer_id,
    # NOTE: This request contains a single conversion as a demonstration.
    # However, if you have multiple conversions to upload, it's best to upload
    # multiple conversions per request instead of sending a separate request per
    # conversion. See the following for per-request limits:
    # https://developers.google.com/google-ads/api/docs/best-practices/quotas#conversion_upload_service
    conversions: [click_conversion],
    partial_failure: true,
  )
  if response.partial_failure_error.nil?
    result = response.results.first
    puts "Uploaded conversion that occurred at #{result.conversion_date_time} " \
      "from Google Click ID #{result.gclid} to #{result.conversion_action}."
  else
    failures = client.decode_partial_failure_error(response.partial_failure_error)
    puts "Request failed. Failure details:"
    failures.each do |failure|
      failure.errors.each do |error|
        puts "\t#{error.error_code.error_code}: #{error.message}"
      end
    end
  end
end
      

Perl

sub upload_offline_conversion {
  my (
    $api_client,                    $customer_id,
    $conversion_action_id,          $gclid,
    $gbraid,                        $wbraid,
    $conversion_date_time,          $conversion_value,
    $conversion_custom_variable_id, $conversion_custom_variable_value,
    $order_id,                      $ad_user_data_consent
  ) = @_;

  # Verify that exactly one of gclid, gbraid, and wbraid is specified, as required.
  # See https://developers.google.com/google-ads/api/docs/conversions/upload-clicks for details.
  my $number_of_ids_specified = grep { defined $_ } ($gclid, $gbraid, $wbraid);
  if ($number_of_ids_specified != 1) {
    die sprintf "Exactly 1 of gclid, gbraid, or wbraid is required, " .
      "but %d ID values were provided.\n",
      $number_of_ids_specified;
  }

  # Create a click conversion by specifying currency as USD.
  my $click_conversion =
    Google::Ads::GoogleAds::V18::Services::ConversionUploadService::ClickConversion
    ->new({
      conversionAction =>
        Google::Ads::GoogleAds::V18::Utils::ResourceNames::conversion_action(
        $customer_id, $conversion_action_id
        ),
      conversionDateTime => $conversion_date_time,
      conversionValue    => $conversion_value,
      currencyCode       => "USD"
    });

  # Set the single specified ID field.
  if (defined $gclid) {
    $click_conversion->{gclid} = $gclid;
  } elsif (defined $gbraid) {
    $click_conversion->{gbraid} = $gbraid;
  } else {
    $click_conversion->{wbraid} = $wbraid;
  }

  if ($conversion_custom_variable_id && $conversion_custom_variable_value) {
    $click_conversion->{customVariables} = [
      Google::Ads::GoogleAds::V18::Services::ConversionUploadService::CustomVariable
        ->new({
          conversionCustomVariable =>
            Google::Ads::GoogleAds::V18::Utils::ResourceNames::conversion_custom_variable(
            $customer_id, $conversion_custom_variable_id
            ),
          value => $conversion_custom_variable_value
        })];
  }

  if (defined $order_id) {
    # Set the order ID (unique transaction ID), if provided.
    $click_conversion->{orderId} = $order_id;
  }

  # Set the consent information, if provided.
  if ($ad_user_data_consent) {
    # Specify whether user consent was obtained for the data you are uploading.
    # See https://www.google.com/about/company/user-consent-policy for details.
    $click_conversion->{consent} =
      Google::Ads::GoogleAds::V18::Common::Consent->new({
        adUserData => $ad_user_data_consent
      });
  }

  # Issue a request to upload the click conversion. Partial failure should
  # always be set to true.
  #
  # NOTE: This request contains a single conversion as a demonstration.
  # However, if you have multiple conversions to upload, it's best to
  # upload multiple conversions per request instead of sending a separate
  # request per conversion. See the following for per-request limits:
  # https://developers.google.com/google-ads/api/docs/best-practices/quotas#conversion_upload_service
  my $upload_click_conversions_response =
    $api_client->ConversionUploadService()->upload_click_conversions({
      customerId     => $customer_id,
      conversions    => [$click_conversion],
      partialFailure => "true"
    });

  # Print any partial errors returned.
  if ($upload_click_conversions_response->{partialFailureError}) {
    printf "Partial error encountered: '%s'.\n",
      $upload_click_conversions_response->{partialFailureError}{message};
  }

  # Print the result if valid.
  my $uploaded_click_conversion =
    $upload_click_conversions_response->{results}[0];
  if (%$uploaded_click_conversion) {
    printf
      "Uploaded conversion that occurred at '%s' from Google Click ID '%s' " .
      "to the conversion action with resource name '%s'.\n",
      $uploaded_click_conversion->{conversionDateTime},
      $uploaded_click_conversion->{gclid},
      $uploaded_click_conversion->{conversionAction};
  }

  return 1;
}
      

समस्या हल करें

ऑफ़लाइन डेटा डाइग्नोस्टिक्स की मदद से, अपलोड किए गए डेटा की परफ़ॉर्मेंस की लगातार समीक्षा की जा सकती है. हालांकि, लागू करने के दौरान, जवाब के partial_failure_error फ़ील्ड में बताई गई किसी भी गड़बड़ी की जांच करने के लिए, इस सेक्शन में दी गई जानकारी का इस्तेमाल किया जा सकता है.

कन्वर्ज़न ऐक्शन अपलोड करते समय, अनुमति से जुड़ी गड़बड़ियां सबसे आम तौर पर होती हैं. जैसे, USER_PERMISSION_DENIED. दोबारा जांच लें कि आपके अनुरोध में, कन्वर्ज़न ऐक्शन का मालिकाना हक रखने वाले Google Ads कन्वर्ज़न ग्राहक के लिए ग्राहक आईडी सेट किया गया हो. ज़्यादा जानकारी के लिए, अनुमति से जुड़ी गाइड पर जाएं. साथ ही, इन अलग-अलग गड़बड़ियों को डीबग करने के तरीके के बारे में सलाह पाने के लिए, सामान्य गड़बड़ियों से जुड़ी गाइड देखें.

सामान्य गड़बड़ियों को डीबग करना

गड़बड़ी
ConversionUploadError.INVALID_CONVERSION_ACTION_TYPE बताए गए कन्वर्ज़न ऐक्शन का टाइप, क्लिक कन्वर्ज़न अपलोड करने के लिए मान्य नहीं है. पक्का करें कि अपलोड करने के अनुरोध में बताए गए ConversionAction का टाइप UPLOAD_CLICKS हो.
ConversionUploadError.NO_CONVERSION_ACTION_FOUND दिया गया कन्वर्ज़न ऐक्शन चालू नहीं है या अपलोड किए जा रहे customer_id में नहीं मिला. पक्का करें कि आपके अपलोड में मौजूद कन्वर्ज़न ऐक्शन चालू हो और उसका मालिकाना हक, अपलोड के अनुरोध के customer_id के पास हो.
ConversionUploadError.TOO_RECENT_CONVERSION_ACTION कन्वर्ज़न ऐक्शन हाल ही में बनाया गया है. ऐक्शन बनाने के बाद, उन कन्वर्ज़न को फिर से ट्रिगर करने से पहले कम से कम छह घंटे इंतज़ार करें जो ट्रिगर नहीं हो पाए.
ConversionUploadError.INVALID_CUSTOMER_FOR_CLICK अनुरोध का customer_id, क्लिक के समय Google Ads API कन्वर्ज़न खाता वाला ग्राहक आईडी नहीं है. अनुरोध के customer_id को सही ग्राहक पर अपडेट करें.
ConversionUploadError.EVENT_NOT_FOUND Google Ads को क्लिक आईडी और customer_id का कॉम्बिनेशन नहीं मिला. customer_id के लिए ज़रूरी शर्तें देखें और पुष्टि करें कि आपने सही Google Ads खाते का इस्तेमाल करके अपलोड किया है.
ConversionUploadError.DUPLICATE_CLICK_CONVERSION_IN_REQUEST अनुरोध में मौजूद कई कन्वर्ज़न में, क्लिक आईडी, conversion_date_time , और conversion_action का एक ही कॉम्बिनेशन है. अपने अनुरोध से डुप्लीकेट कन्वर्ज़न हटाएं.
ConversionUploadError.CLICK_CONVERSION_ALREADY_EXISTS क्लिक आईडी, conversion_date_time, और conversion_action के एक ही कॉम्बिनेशन वाला कन्वर्ज़न, पहले ही अपलोड किया जा चुका है. अगर अपलोड करने की फिर से कोशिश की जा रही है और यह कन्वर्ज़न पहले अपलोड हो चुका है, तो इस गड़बड़ी को अनदेखा करें. अगर आपको पहले अपलोड किए गए कन्वर्ज़न के अलावा कोई और कन्वर्ज़न जोड़ना है, तो पहले अपलोड किए गए कन्वर्ज़न की डुप्लीकेट कॉपी बनाने से बचने के लिए, ClickConversion के conversion_date_time में बदलाव करें.
ConversionUploadError.EVENT_NOT_FOUND Google Ads को क्लिक आईडी और customer_id का कॉम्बिनेशन नहीं मिला. customer_id के लिए ज़रूरी शर्तें देखें और पुष्टि करें कि आपने सही Google Ads खाते का इस्तेमाल करके अपलोड किया है.
ConversionUploadError.EXPIRED_EVENT इंपोर्ट किया गया क्लिक, click_through_lookback_window_days फ़ील्ड में बताई गई समयसीमा से पहले हुआ था. click_through_lookback_window_days में किए गए बदलाव का असर, सिर्फ़ बदलाव के बाद रिकॉर्ड किए गए क्लिक पर पड़ता है. इसलिए, लुकबैक विंडो में बदलाव करने से, किसी खास क्लिक के लिए यह गड़बड़ी ठीक नहीं होगी. अगर ज़रूरी हो, तो conversion_action को किसी ऐसी दूसरी कार्रवाई में बदलें जिसकी लुकबैक विंडो ज़्यादा हो.
ConversionUploadError.CONVERSION_PRECEDES_EVENT conversion_date_time, क्लिक की तारीख और समय से पहले का हो. conversion_date_time को किसी नई वैल्यू पर अपडेट करें.
ConversionUploadError.GBRAID_WBRAID_BOTH_SET ClickConversion में gbraid और wbraid, दोनों के लिए वैल्यू सेट है. कन्वर्ज़न को अपडेट करके, सिर्फ़ एक क्लिक आईडी का इस्तेमाल करें. साथ ही, पक्का करें कि एक ही कन्वर्ज़न में कई क्लिक को आपस में न जोड़ा जा रहा हो. हर क्लिक का सिर्फ़ एक क्लिक आईडी होता है.
FieldError.VALUE_MUST_BE_UNSET GoogleAdsError के location को देखकर पता लगाएं कि इनमें से किस समस्या की वजह से गड़बड़ी हुई है.
  • ClickConversion में gclid के लिए वैल्यू सेट है. साथ ही, इसमें gbraid या wbraid में से कम से कम एक वैल्यू भी सेट है. सिर्फ़ एक क्लिक आईडी का इस्तेमाल करने के लिए, कन्वर्ज़न को अपडेट करें. साथ ही, पक्का करें कि एक ही कन्वर्ज़न में कई क्लिक को आपस में न जोड़ा जा रहा हो. हर क्लिक का सिर्फ़ एक क्लिक आईडी होता है.
  • ClickConversion में gbraid या wbraid के लिए वैल्यू सेट है और custom_variables के लिए भी वैल्यू सेट है. Google Ads, gbraid या wbraid क्लिक आईडी वाले कन्वर्ज़न के लिए कस्टम वैरिएबल का इस्तेमाल नहीं करता. कन्वर्ज़न के custom_variables फ़ील्ड को अनसेट करें.

रिपोर्ट में कन्वर्ज़न

अपलोड किए गए कन्वर्ज़न, मूल क्लिक के इंप्रेशन की तारीख की रिपोर्ट में दिखते हैं, न कि अपलोड के अनुरोध की तारीख या ClickConversion के conversion_date_time की तारीख की रिपोर्ट में.

इंपोर्ट किए गए कन्वर्ज़न के आंकड़ों को आपके Google Ads खाते में दिखने में, आखिरी क्लिक एट्रिब्यूशन के लिए तीन घंटे लग सकते हैं. खोज के लिए इस्तेमाल होने वाले अन्य एट्रिब्यूशन मॉडल के लिए, इसमें तीन घंटे से ज़्यादा समय लग सकता है. ज़्यादा जानकारी के लिए, डेटा अपडेट होने की फ़्रीक्वेंसी के बारे में जानकारी देने वाली गाइड देखें.