একটি পারফরম্যান্স ম্যাক্স ক্যাম্পেইন তৈরি করুন

পূর্বশর্ত সম্পদ এবং বাজেটের সাথে, এখন প্রচারণা তৈরি করা যেতে পারে।

পারফরমেন্স ম্যাক্স ক্যাম্পেইনগুলির একটি AdvertisingChannelType PERFORMANCE_MAX আছে। কোন AdvertisingChannelSubType সেট করা উচিত নয়।

শুধুমাত্র সমর্থিত বিডিং কৌশল হল:

  • আপনি যদি মান ট্র্যাক না করেন এবং আপনার সমস্ত রূপান্তরকে সমানভাবে যত্ন না করেন, তাহলে MaximizeConversions বিডিং কৌশল ব্যবহার করুন। একটি ঐচ্ছিক টার্গেট CPA (প্রতি-ক্রিয়ার খরচ) সেট করা যেতে পারে। আরও জানুন

  • আপনি যদি আপনার রূপান্তরগুলির সাথে মানগুলি ট্র্যাক করে থাকেন, তাহলে MaximizeConversionValue বিডিং কৌশল সেট করুন। একটি ঐচ্ছিক লক্ষ্য ROAS (বিজ্ঞাপন ব্যয়ের উপর রিটার্ন) সেট করা যেতে পারে। আরও জানুন

BiddingStrategyService ব্যবহার করে তৈরি পোর্টফোলিও বিড কৌশলগুলি পারফরম্যান্স ম্যাক্স ক্যাম্পেইন দ্বারা সমর্থিত নয়। একটি পোর্টফোলিও বিডিং কৌশলে একাধিক প্রচারাভিযান তৈরি করার পরিবর্তে, কম প্রচারাভিযান এবং আরও সম্পদ গোষ্ঠী ব্যবহার করুন৷

/** Creates a MutateOperation that creates a new Performance Max campaign. */
private MutateOperation createPerformanceMaxCampaignOperation(
    long customerId, boolean brandGuidelinesEnabled) {
  Campaign performanceMaxCampaign =
      Campaign.newBuilder()
          .setName("Performance Max campaign #" + getPrintableDateTime())
          // Sets the campaign status as PAUSED. The campaign is the only entity in
          // the mutate request that should have its status set.
          .setStatus(CampaignStatus.PAUSED)
          // All Performance Max campaigns have an advertising_channel_type of
          // PERFORMANCE_MAX. The advertising_channel_sub_type should not be set.
          .setAdvertisingChannelType(AdvertisingChannelType.PERFORMANCE_MAX)
          // Bidding strategy must be set directly on the campaign.
          // Setting a portfolio bidding strategy by resource name is not supported.
          // Max Conversion and Maximize Conversion Value are the only strategies
          // supported for Performance Max campaigns.
          // An optional ROAS (Return on Advertising Spend) can be set for
          // maximize_conversion_value. The ROAS value must be specified as a ratio in
          // the API. It is calculated by dividing "total value" by "total spend".
          // For more information on Maximize Conversion Value, see the support
          // article: http://support.google.com/google-ads/answer/7684216.
          // A targetRoas of 3.5 corresponds to a 350% return on ad spend.
          .setMaximizeConversionValue(
              MaximizeConversionValue.newBuilder().setTargetRoas(3.5).build())
          // Sets the Final URL expansion opt out. This flag is specific to
          // Performance Max campaigns. If opted out (True), only the final URLs in
          // the asset group or URLs specified in the advertiser's Google Merchant
          // Center or business data feeds are targeted.
          // If opted in (False), the entire domain will be targeted. For best
          // results, set this value to false to opt in and allow URL expansions. You
          // can optionally add exclusions to limit traffic to parts of your website.
          .setUrlExpansionOptOut(false)
          // Sets if the campaign is enabled for brand guidelines. For more information on brand
          // guidelines, see https://support.google.com/google-ads/answer/14934472.
          .setBrandGuidelinesEnabled(brandGuidelinesEnabled)
          // Assigns the resource name with a temporary ID.
          .setResourceName(
              ResourceNames.campaign(customerId, PERFORMANCE_MAX_CAMPAIGN_TEMPORARY_ID))
          // Sets the budget using the given budget resource name.
          .setCampaignBudget(ResourceNames.campaignBudget(customerId, BUDGET_TEMPORARY_ID))
          // Optional fields.
          .setStartDate(new DateTime().plusDays(1).toString("yyyyMMdd"))
          .setEndDate(new DateTime().plusDays(365).toString("yyyyMMdd"))
          .build();

  return MutateOperation.newBuilder()
      .setCampaignOperation(
          CampaignOperation.newBuilder().setCreate(performanceMaxCampaign).build())
      .build();
}

      
/// Creates a MutateOperation that creates a new Performance Max campaign.
/// <param name="campaignResourceName">The campaign resource name.</param>
/// <param name="campaignBudgetResourceName">The campaign budget resource name.</param>
/// <param name="brandGuidelinesEnabled">Whether or not to enable brand guidelines.</param>
/// <returns>A MutateOperations that will create this new campaign.</returns>
private MutateOperation CreatePerformanceMaxCampaignOperation(
    string campaignResourceName,
    string campaignBudgetResourceName,
    bool brandGuidelinesEnabled)
{
    MutateOperation operation = new MutateOperation()
    {
        CampaignOperation = new CampaignOperation()
        {
            Create = new Campaign()
            {
                Name = "Performance Max campaign #" + ExampleUtilities.GetRandomString(),

                // Set the campaign status as PAUSED. The campaign is the only entity in
                // the mutate request that should have its status set.
                Status = CampaignStatus.Paused,

                // All Performance Max campaigns have an AdvertisingChannelType of
                // PerformanceMax. The AdvertisingChannelSubType should not be set.
                AdvertisingChannelType = AdvertisingChannelType.PerformanceMax,

                // Bidding strategy must be set directly on the campaign. Setting a
                // portfolio bidding strategy by resource name is not supported. Max
                // Conversion and Maximize Conversion Value are the only strategies
                // supported for Performance Max campaigns. BiddingStrategyType is
                // read-only and cannot be set by the API. An optional ROAS (Return on
                // Advertising Spend) can be set to enable the MaximizeConversionValue
                // bidding strategy. The ROAS value must be specified as a ratio in the API.
                // It is calculated by dividing "total value" by "total spend".
                //
                // For more information on Maximize Conversion Value, see the support
                // article:
                // http://support.google.com/google-ads/answer/7684216.
                //
                // A target_roas of 3.5 corresponds to a 350% return on ad spend.
                MaximizeConversionValue = new MaximizeConversionValue()
                {
                    TargetRoas = 3.5
                },

                // Set the Final URL expansion opt out. This flag is specific to
                // Performance Max campaigns. If opted out (True), only the final URLs in
                // the asset group or URLs specified in the advertiser's Google Merchant
                // Center or business data feeds are targeted.
                // If opted in (False), the entire domain will be targeted. For best
                // results, set this value to false to opt in and allow URL expansions. You
                // can optionally add exclusions to limit traffic to parts of your website.
                UrlExpansionOptOut = false,

                // Use the temporary resource name created earlier
                ResourceName = campaignResourceName,

                // Set the budget using the given budget resource name.
                CampaignBudget = campaignBudgetResourceName,

                // Set if the campaign is enabled for brand guidelines. For more information
                // on brand guidelines, see https://support.google.com/google-ads/answer/14934472.
                BrandGuidelinesEnabled = brandGuidelinesEnabled,

                // Optional fields
                StartDate = DateTime.Now.AddDays(1).ToString("yyyyMMdd"),
                EndDate = DateTime.Now.AddDays(365).ToString("yyyyMMdd")
            }
        }
    };

    return operation;
}

      
private static function createPerformanceMaxCampaignOperation(
    int $customerId,
    bool $brandGuidelinesEnabled
): MutateOperation {
    // Creates a mutate operation that creates a campaign operation.
    return new MutateOperation([
        'campaign_operation' => new CampaignOperation([
            'create' => new Campaign([
                'name' => 'Performance Max campaign #' . Helper::getPrintableDatetime(),
                // Assigns the resource name with a temporary ID.
                'resource_name' => ResourceNames::forCampaign(
                    $customerId,
                    self::PERFORMANCE_MAX_CAMPAIGN_TEMPORARY_ID
                ),
                // Sets the budget using the given budget resource name.
                'campaign_budget' => ResourceNames::forCampaignBudget(
                    $customerId,
                    self::BUDGET_TEMPORARY_ID
                ),
                // The campaign is the only entity in the mutate request that should have its
                // status set.
                // Recommendation: Set the campaign to PAUSED when creating it to prevent
                // the ads from immediately serving.
                'status' => CampaignStatus::PAUSED,
                // All Performance Max campaigns have an advertising_channel_type of
                // PERFORMANCE_MAX. The advertising_channel_sub_type should not be set.
                'advertising_channel_type' => AdvertisingChannelType::PERFORMANCE_MAX,

                // Bidding strategy must be set directly on the campaign.
                // Setting a portfolio bidding strategy by resource name is not supported.
                // Max Conversion and Maximize Conversion Value are the only strategies
                // supported for Performance Max campaigns.
                // An optional ROAS (Return on Advertising Spend) can be set for
                // maximize_conversion_value. The ROAS value must be specified as a ratio in
                // the API. It is calculated by dividing "total value" by "total spend".
                // For more information on Maximize Conversion Value, see the support
                // article: http://support.google.com/google-ads/answer/7684216.
                // A target_roas of 3.5 corresponds to a 350% return on ad spend.
                'maximize_conversion_value' => new MaximizeConversionValue([
                    'target_roas' => 3.5
                ]),

                // Sets the Final URL expansion opt out. This flag is specific to
                // Performance Max campaigns. If opted out (true), only the final URLs in
                // the asset group or URLs specified in the advertiser's Google Merchant
                // Center or business data feeds are targeted.
                // If opted in (false), the entire domain will be targeted. For best
                // results, set this value to false to opt in and allow URL expansions. You
                // can optionally add exclusions to limit traffic to parts of your website.
                'url_expansion_opt_out' => false,

                // Sets if the campaign is enabled for brand guidelines. For more information
                // on brand guidelines, see
                // https://support.google.com/google-ads/answer/14934472.
                'brand_guidelines_enabled' => $brandGuidelinesEnabled,

                // Optional fields.
                'start_date' => date('Ymd', strtotime('+1 day')),
                'end_date' => date('Ymd', strtotime('+365 days'))
            ])
        ])
    ]);
}
      
def create_performance_max_campaign_operation(
    client,
    customer_id,
    brand_guidelines_enabled,
):
    """Creates a MutateOperation that creates a new Performance Max campaign.

    A temporary ID will be assigned to this campaign so that it can
    be referenced by other objects being created in the same Mutate request.

    Args:
        client: an initialized GoogleAdsClient instance.
        customer_id: a client customer ID.
        brand_guidelines_enabled: a boolean value indicating if the campaign is
          enabled for brand guidelines.

    Returns:
        a MutateOperation that creates a campaign.
    """
    mutate_operation = client.get_type("MutateOperation")
    campaign = mutate_operation.campaign_operation.create
    campaign.name = f"Performance Max campaign #{uuid4()}"
    # Set the campaign status as PAUSED. The campaign is the only entity in
    # the mutate request that should have its status set.
    campaign.status = client.enums.CampaignStatusEnum.PAUSED
    # All Performance Max campaigns have an advertising_channel_type of
    # PERFORMANCE_MAX. The advertising_channel_sub_type should not be set.
    campaign.advertising_channel_type = (
        client.enums.AdvertisingChannelTypeEnum.PERFORMANCE_MAX
    )
    # Bidding strategy must be set directly on the campaign.
    # Setting a portfolio bidding strategy by resource name is not supported.
    # Max Conversion and Maximize Conversion Value are the only strategies
    # supported for Performance Max campaigns.
    # An optional ROAS (Return on Advertising Spend) can be set for
    # maximize_conversion_value. The ROAS value must be specified as a ratio in
    # the API. It is calculated by dividing "total value" by "total spend".
    # For more information on Maximize Conversion Value, see the support
    # article: http://support.google.com/google-ads/answer/7684216.
    # A target_roas of 3.5 corresponds to a 350% return on ad spend.
    campaign.bidding_strategy_type = (
        client.enums.BiddingStrategyTypeEnum.MAXIMIZE_CONVERSION_VALUE
    )
    campaign.maximize_conversion_value.target_roas = 3.5

    # Set the Final URL expansion opt out. This flag is specific to
    # Performance Max campaigns. If opted out (True), only the final URLs in
    # the asset group or URLs specified in the advertiser's Google Merchant
    # Center or business data feeds are targeted.
    # If opted in (False), the entire domain will be targeted. For best
    # results, set this value to false to opt in and allow URL expansions. You
    # can optionally add exclusions to limit traffic to parts of your website.
    campaign.url_expansion_opt_out = False

    # Set if the campaign is enabled for brand guidelines. For more information
    # on brand guidelines, see https://support.google.com/google-ads/answer/14934472.
    campaign.brand_guidelines_enabled = brand_guidelines_enabled

    # Assign the resource name with a temporary ID.
    campaign_service = client.get_service("CampaignService")
    campaign.resource_name = campaign_service.campaign_path(
        customer_id, _PERFORMANCE_MAX_CAMPAIGN_TEMPORARY_ID
    )
    # Set the budget using the given budget resource name.
    campaign.campaign_budget = campaign_service.campaign_budget_path(
        customer_id, _BUDGET_TEMPORARY_ID
    )

    # Optional fields
    campaign.start_date = (datetime.now() + timedelta(1)).strftime("%Y%m%d")
    campaign.end_date = (datetime.now() + timedelta(365)).strftime("%Y%m%d")

    return mutate_operation
      
# Creates a MutateOperation that creates a new Performance Max campaign.
#
# A temporary ID will be assigned to this campaign so that it can
# be referenced by other objects being created in the same Mutate request.
def create_performance_max_campaign_operation(
    client,
    customer_id,
    brand_guidelines_enabled)
  client.operation.mutate do |m|
    m.campaign_operation = client.operation.create_resource.campaign do |c|
      c.name = "Performance Max campaign #{SecureRandom.uuid}"
      # Set the campaign status as PAUSED. The campaign is the only entity in
      # the mutate request that should have its status set.
      c.status = :PAUSED
      # All Performance Max campaigns have an advertising_channel_type of
      # PERFORMANCE_MAX. The advertising_channel_sub_type should not be set.
      c.advertising_channel_type = :PERFORMANCE_MAX
      # Bidding strategy must be set directly on the campaign.
      # Setting a portfolio bidding strategy by resource name is not supported.
      # Max Conversion and Maximize Conversion Value are the only strategies
      # supported for Performance Max campaigns.
      # An optional ROAS (Return on Advertising Spend) can be set for
      # maximize_conversion_value. The ROAS value must be specified as a ratio in
      # the API. It is calculated by dividing "total value" by "total spend".
      # For more information on Maximize Conversion Value, see the support
      # article: http://support.google.com/google-ads/answer/7684216.
      # A target_roas of 3.5 corresponds to a 350% return on ad spend.
      c.bidding_strategy_type = :MAXIMIZE_CONVERSION_VALUE
      c.maximize_conversion_value = client.resource.maximize_conversion_value do |mcv|
        mcv.target_roas = 3.5
      end
      # Set the Final URL expansion opt out. This flag is specific to
      # Performance Max campaigns. If opted out (true), only the final URLs in
      # the asset group or URLs specified in the advertiser's Google Merchant
      # Center or business data feeds are targeted.
      # If opted in (false), the entire domain will be targeted. For best
      # results, set this value to false to opt in and allow URL expansions. You
      # can optionally add exclusions to limit traffic to parts of your website.
      c.url_expansion_opt_out = false

      # Set if the campaign is enabled for brand guidelines. For more
      # information on brand guidelines, see
      # https://support.google.com/google-ads/answer/14934472.
      c.brand_guidelines_enabled = brand_guidelines_enabled

      # Assign the resource name with a temporary ID.
      c.resource_name = client.path.campaign(customer_id, PERFORMANCE_MAX_CAMPAIGN_TEMPORARY_ID)
      # Set the budget using the given budget resource name.
      c.campaign_budget = client.path.campaign_budget(customer_id, BUDGET_TEMPORARY_ID)

      # Optional fields
      c.start_date = DateTime.parse((Date.today + 1).to_s).strftime('%Y%m%d')
      c.end_date = DateTime.parse(Date.today.next_year.to_s).strftime('%Y%m%d')
    end
  end
end
      
sub create_performance_max_campaign_operation {
  my ($customer_id, $brand_guidelines_enabled) = @_;

  # Create a mutate operation that creates a campaign operation.
  return
    Google::Ads::GoogleAds::V19::Services::GoogleAdsService::MutateOperation->
    new({
      campaignOperation =>
        Google::Ads::GoogleAds::V19::Services::CampaignService::CampaignOperation
        ->new({
          create => Google::Ads::GoogleAds::V19::Resources::Campaign->new({
              # Assign the resource name with a temporary ID.
              resourceName =>
                Google::Ads::GoogleAds::V19::Utils::ResourceNames::campaign(
                $customer_id, PERFORMANCE_MAX_CAMPAIGN_TEMPORARY_ID
                ),
              name => "Performance Max campaign #" . uniqid(),
              # Set the budget using the given budget resource name.
              campaignBudget =>
                Google::Ads::GoogleAds::V19::Utils::ResourceNames::campaign_budget(
                $customer_id, BUDGET_TEMPORARY_ID
                ),
              # Set the campaign status as PAUSED. The campaign is the only entity in
              # the mutate request that should have its status set.
              status =>
                Google::Ads::GoogleAds::V19::Enums::CampaignStatusEnum::PAUSED,
              # All Performance Max campaigns have an advertisingChannelType of
              # PERFORMANCE_MAX. The advertisingChannelSubType should not be set.
              advertisingChannelType => PERFORMANCE_MAX,

              # Bidding strategy must be set directly on the campaign.
              # Setting a portfolio bidding strategy by resource name is not supported.
              # Max Conversion and Maximize Conversion Value are the only strategies
              # supported for Performance Max campaigns.
              # An optional ROAS (Return on Advertising Spend) can be set for
              # maximizeConversionValue. The ROAS value must be specified as a ratio in
              # the API. It is calculated by dividing "total value" by "total spend".
              # For more information on Maximize Conversion Value, see the support
              # article: http://support.google.com/google-ads/answer/7684216.
              # A targetRoas of 3.5 corresponds to a 350% return on ad spend.
              maximizeConversionValue =>
                Google::Ads::GoogleAds::V19::Common::MaximizeConversionValue->
                new({
                  targetRoas => 3.5
                }
                ),

              # Set the final URL expansion opt out. This flag is specific to
              # Performance Max campaigns. If opted out (true), only the final URLs in
              # the asset group or URLs specified in the advertiser's Google Merchant
              # Center or business data feeds are targeted.
              # If opted in (false), the entire domain will be targeted. For best
              # results, set this value to false to opt in and allow URL expansions. You
              # can optionally add exclusions to limit traffic to parts of your website.
              urlExpansionOptOut => "false",

              # Set if the campaign is enabled for brand guidelines. For more information
              # on brand guidelines, see https://support.google.com/google-ads/answer/14934472.
              brandGuidelinesEnabled => $brand_guidelines_enabled,

              # Optional fields.
              startDate => strftime("%Y%m%d", localtime(time + 60 * 60 * 24)),
              endDate   =>
                strftime("%Y%m%d", localtime(time + 60 * 60 * 24 * 365)),
            })})});
}
      

বিডিং সুপারিশ

আপনার পারফরম্যান্সের সর্বোচ্চ প্রচারাভিযান বিডিং অপ্টিমাইজ করতে সাহায্য করার জন্য Google Ads API দুটি ধরনের সুপারিশ অফার করে:

  • MAXIMIZE_CONVERSION_VALUE_OPT_IN আপনার প্রচারাভিযানের জন্য সর্বাধিক রূপান্তর মান বিডিং কৌশল ব্যবহার করার সুপারিশ করে৷

  • MAXIMIZE_CONVERSIONS_OPT_IN আপনার প্রচারাভিযানের জন্য সর্বাধিক রূপান্তর বিডিং কৌশল ব্যবহার করার সুপারিশ করে এবং একটি প্রস্তাবিত বাজেটের পরিমাণ প্রদান করে৷

সুপারিশ ব্যবহার সম্পর্কে আরও তথ্যের জন্য, অপ্টিমাইজেশান স্কোর এবং সুপারিশ নির্দেশিকা দেখুন।

ব্র্যান্ড নির্দেশিকা

ব্র্যান্ড নির্দেশিকা নিয়ন্ত্রণ করে যে কীভাবে আপনার ব্র্যান্ড আপনার পারফরম্যান্স ম্যাক্স ক্যাম্পেইন স্বয়ংক্রিয় সম্পদ বা ফর্ম্যাটে উপস্থাপন করা হয়। Google Ads API v19 থেকে, আপনি Campaign.brand_guidelines_enabled সেট করে ব্র্যান্ড নির্দেশিকা সক্ষম করে পারফরম্যান্স সর্বোচ্চ true তৈরি করতে পারেন অনলাইন বিক্রয়ের জন্য পারফরম্যান্স সর্বোচ্চ বা লিড জেনারেশন (স্ট্যান্ডার্ড) এবং পণ্য ফিড (খুচরা বিক্রেতা) সহ অনলাইন বিক্রয়ের জন্য পারফরম্যান্স সর্বোচ্চ।

ব্র্যান্ড নির্দেশিকা সক্ষম করা কর্মক্ষমতা সর্বাধিক প্রচারাভিযানগুলি ব্র্যান্ড সম্পদ ক্ষেত্রের প্রকারের জন্য প্রচার-স্তরের সম্পদ ব্যবহার করে ( BUSINESS_NAME , LOGO , এবং LANDSCAPE_LOGO )। CampaignAsset ব্যবহার করে আপনাকে অবশ্যই ব্র্যান্ড সম্পদগুলিকে প্রচারাভিযানের সাথে লিঙ্ক করতে হবে এবং প্রচারে অবশ্যই থাকতে হবে:

  • ঠিক একটি BUSINESS_NAME সম্পদ
  • কমপক্ষে একটি LOGO সম্পদ এবং LOGO বা LANDSCAPE_LOGO প্রকারের চারটি ঐচ্ছিক অতিরিক্ত লোগো সম্পদ

ক্যাম্পেইনের জন্য ঐচ্ছিক রঙ এবং ফন্ট নির্দেশিকা Campaign.brand_guidelines ক্ষেত্র ব্যবহার করে সেট করা যেতে পারে:

  • main_color প্রাথমিক রঙ সেট করে। রঙটি অবশ্যই হেক্স কোড স্ট্রিং হিসাবে প্রদান করতে হবে (যেমন, #00ff00)।
  • accent_color গৌণ রঙ সেট করে। রঙটি অবশ্যই হেক্স কোড স্ট্রিং হিসাবে প্রদান করতে হবে (যেমন, #00ff00)।
  • ফন্ট সেট করতে predefined_font_family ব্যবহার করুন। মানটি অবশ্যই নিম্নলিখিত Google ফন্টগুলির মধ্যে একটি হতে হবে (কেস সংবেদনশীল): Open Sans , Roboto , Montserrat , Poppins , Lato , Oswald , Playfair Display , Roboto Slab

মাইগ্রেশন

Campaign.brand_guidelines_enabled নির্দেশ করে যদি একটি বিদ্যমান প্রচারাভিযান ব্র্যান্ড নির্দেশিকাগুলির জন্য সক্ষম হয়। একটি বিদ্যমান প্রচারাভিযানের জন্য ব্র্যান্ড নির্দেশিকা সক্ষম করতে, সরাসরি brand_guidelines_enabled ক্ষেত্রটি আপডেট করার পরিবর্তে CampaignService.EnablePMaxBrandGuidelines ব্যবহার করুন, কারণ ক্ষেত্রটি অপরিবর্তনীয়। স্বয়ংক্রিয়ভাবে শীর্ষ-পারফর্মিং ব্র্যান্ড সম্পদের সাথে প্রচারাভিযানটি পূরণ করতে auto_populate_brand_assets true সেট করুন। অন্যথায়, আপনাকে অবশ্যই brand_assets এর সাথে ক্রিয়াকলাপে ম্যানুয়ালি সম্পদ প্রদান করতে হবে। একটি প্রচারাভিযানের জন্য ব্র্যান্ড নির্দেশিকা অক্ষম করা সমর্থিত নয়৷

ঐচ্ছিক: চূড়ান্ত URL সম্প্রসারণ

URL সম্প্রসারণ আপনাকে আপনার পারফরম্যান্স ম্যাক্স ক্যাম্পেইনের পারফরম্যান্স অপ্টিমাইজ করতে সাহায্য করে। গ্রাহকদের অভিপ্রায়ের উপর ভিত্তি করে আরও প্রাসঙ্গিক ল্যান্ডিং পৃষ্ঠা এবং গতিশীল শিরোনাম দিয়ে আপনার চূড়ান্ত URL প্রতিস্থাপন করতে URL সম্প্রসারণ ব্যবহার করুন। ডিফল্টরূপে, URL সম্প্রসারণ হল:

  • বন্ধ, যদি পণ্য ফিল্টার প্রয়োগ করা হয়।
  • চালু, সব পণ্য টার্গেট করার সময়।

এই ডিফল্ট পরিবর্তন করতে Campaign.final_url_expansion_opt_out সেট করুন।

URL সম্প্রসারণ বর্জন সেট করতে WEBPAGE প্রচারের মানদণ্ড ব্যবহার করুন।