ज़रूरी ऐसेट और बजट के साथ, अब कैंपेन बनाया जा सकता है.
परफ़ॉर्मेंस मैक्स कैंपेन का स्कोर AdvertisingChannelType
है.PERFORMANCE_MAX
कोई AdvertisingChannelSubType
सेट नहीं होना चाहिए.
सिर्फ़ इन बिडिंग की रणनीतियों का इस्तेमाल किया जा सकता है:
अगर आपको कन्वर्ज़न के साथ वैल्यू को ट्रैक नहीं करना है और आपके लिए सभी कन्वर्ज़न अहम हैं, तो
MaximizeConversions
बिडिंग रणनीति का इस्तेमाल करें. टारगेट सीपीए (हर ऐक्शन के लिए खर्च का टारगेट) को सेट किया जा सकता है. हालांकि, यह ज़रूरी नहीं है. ज़्यादा जानें.अगर कन्वर्ज़न के साथ वैल्यू को भी ट्रैक किया जा रहा है, तो
MaximizeConversionValue
बिडिंग की रणनीति सेट करें. टारगेट आरओएएस (विज्ञापन खर्च पर रिटर्न) को सेट किया जा सकता है. हालांकि, यह ज़रूरी नहीं है. ज़्यादा जानें.
BiddingStrategyService
का इस्तेमाल करके बनाई गई पोर्टफ़ोलियो बिड रणनीतियां, परफ़ॉर्मेंस मैक्स कैंपेन के साथ काम नहीं करतीं. पोर्टफ़ोलियो बिडिंग की रणनीति में कई कैंपेन बनाने के बजाय, कम कैंपेन और ज़्यादा ऐसेट ग्रुप का इस्तेमाल करें.
Java
/** 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)) // Declares whether this campaign serves political ads targeting the EU. .setContainsEuPoliticalAdvertising(DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING) // 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(); }
C#
/// 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, // Declare whether or not this campaign contains political ads targeting the EU. ContainsEuPoliticalAdvertising = EuPoliticalAdvertisingStatus.DoesNotContainEuPoliticalAdvertising, // Optional fields StartDate = DateTime.Now.AddDays(1).ToString("yyyyMMdd"), EndDate = DateTime.Now.AddDays(365).ToString("yyyyMMdd") } } }; return operation; }
PHP
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, // Declare whether or not this campaign serves political ads targeting the EU. 'contains_eu_political_advertising' => EuPoliticalAdvertisingStatus::DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING, // Optional fields. 'start_date' => date('Ymd', strtotime('+1 day')), 'end_date' => date('Ymd', strtotime('+365 days')) ]) ]) ]); }
Python
def create_performance_max_campaign_operation( client: GoogleAdsClient, customer_id: str, brand_guidelines_enabled: bool, ) -> MutateOperation: """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: MutateOperation = client.get_type("MutateOperation") campaign: 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: CampaignServiceClient = 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 ) # Declare whether or not this campaign serves political ads targeting the # EU. Valid values are: # CONTAINS_EU_POLITICAL_ADVERTISING # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING campaign.contains_eu_political_advertising = ( client.enums.EuPoliticalAdvertisingStatusEnum.DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING ) # 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
Ruby
# 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) # Declare whether or not this campaign serves political ads targeting the EU. # Valid values are CONTAINS_EU_POLITICAL_ADVERTISING and # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING. c.contains_eu_political_advertising = :DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING # 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
Perl
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::V21::Services::GoogleAdsService::MutateOperation-> new({ campaignOperation => Google::Ads::GoogleAds::V21::Services::CampaignService::CampaignOperation ->new({ create => Google::Ads::GoogleAds::V21::Resources::Campaign->new({ # Assign the resource name with a temporary ID. resourceName => Google::Ads::GoogleAds::V21::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::V21::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::V21::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::V21::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)), # Declare whether or not this campaign serves political ads targeting the EU. # Valid values are CONTAINS_EU_POLITICAL_ADVERTISING and # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING. containsEuPoliticalAdvertising => DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING })})}); }
बिडिंग के सुझाव
Google Ads API, परफ़ॉर्मेंस मैक्स कैंपेन की बिडिंग को ऑप्टिमाइज़ करने में आपकी मदद करने के लिए, दो तरह के सुझाव देता है:
MAXIMIZE_CONVERSION_VALUE_OPT_IN
आपके कैंपेन के लिए, कन्वर्ज़न वैल्यू बढ़ाने वाली बिडिंग की रणनीति का इस्तेमाल करने का सुझाव देता है.MAXIMIZE_CONVERSIONS_OPT_IN
आपके कैंपेन के लिए, कन्वर्ज़न बढ़ाने के लिए बिडिंग की रणनीति का इस्तेमाल करने का सुझाव देता है. साथ ही, बजट की सुझाई गई रकम भी दिखाता है.
सुझावों का इस्तेमाल करने के बारे में ज़्यादा जानने के लिए, ऑप्टिमाइज़ेशन स्कोर और सुझाव गाइड पढ़ें.
ब्रैंड से जुड़े दिशा-निर्देश
ब्रैंड के दिशा-निर्देशों से यह कंट्रोल किया जा सकता है कि परफ़ॉर्मेंस मैक्स कैंपेन की अपने-आप तैयार होने वाली ऐसेट या फ़ॉर्मैट में, आपके ब्रैंड को कैसे दिखाया जाए. Google Ads API v21 से, परफ़ॉर्मेंस मैक्स कैंपेन में ब्रैंड के दिशा-निर्देशों को अपने-आप लागू करने की सुविधा चालू हो जाती है. यह सुविधा, ऑनलाइन बिक्री या लीड जनरेशन (स्टैंडर्ड) के लिए बनाए गए सभी नए परफ़ॉर्मेंस मैक्स कैंपेन और प्रॉडक्ट फ़ीड की मदद से ऑनलाइन बिक्री (खुदरा) के लिए बनाए गए परफ़ॉर्मेंस मैक्स कैंपेन पर लागू होती है. अगर आपको अपने नए कैंपेन में ब्रैंड के दिशा-निर्देशों को चालू नहीं करना है, तो नया परफ़ॉर्मेंस मैक्स कैंपेन बनाते समय, Campaign.brand_guidelines_enabled
को false
पर सेट करें.
ब्रैंड से जुड़े दिशा-निर्देशों के साथ परफ़ॉर्मेंस मैक्स कैंपेन, ब्रैंड ऐसेट फ़ील्ड टाइप (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.
अपने-आप माइग्रेट होना
हम 1 जून, 2025 से, परफ़ॉर्मेंस मैक्स कैंपेन के लिए ब्रैंड के दिशा-निर्देशों को अपने-आप चालू कर देंगे. ये ऐसे कैंपेन के लिए चालू किए जाएंगे जो सभी ऐसेट ग्रुप में एक ही ब्रैंड ऐसेट (BUSINESS_NAME
, LOGO
, और LANDSCAPE_LOGO
) का इस्तेमाल करते हैं. अपने-आप माइग्रेट होने वाले सभी कैंपेन, 30 अक्टूबर, 2025 तक माइग्रेट हो जाएंगे.
- अपने-आप माइग्रेट होने की सुविधा सिर्फ़ उन कैंपेन के लिए उपलब्ध होगी जिनमें हर ऐसेट ग्रुप में, कारोबार के एक ही नाम और लोगो का इस्तेमाल किया जाता है. अगर आपके कैंपेन में इन ऐसेट के अलग-अलग वर्शन हैं, तो उन्हें अपने-आप माइग्रेट नहीं किया जाएगा.
- ज़रूरी शर्तें पूरी करने वाले किसी ग्राहक आईडी से जुड़े सभी परफ़ॉर्मेंस मैक्स कैंपेन एक साथ माइग्रेट किए जाएंगे.
- माइग्रेशन के बाद, माइग्रेट किए गए हर कैंपेन के पास, कैंपेन लेवल पर सेव की गई ब्रैंड ऐसेट का अपना सेट होगा. इसके लिए,
CampaignAsset
का इस्तेमाल किया जाएगा.
किसी कैंपेन को माइग्रेट किया गया है या नहीं, यह जानने के लिए उसके Campaign.brand_guidelines_enabled
फ़ील्ड को देखें.
मैन्युअल माइग्रेशन
जिन कैंपेन को अपने-आप माइग्रेट होने की सुविधा नहीं मिलती उन्हें मैन्युअल तरीके से माइग्रेट करना होगा, ताकि ब्रैंड के दिशा-निर्देशों को चालू किया जा सके.
Campaign.brand_guidelines_enabled
इससे पता चलता है कि किसी मौजूदा कैंपेन के लिए, ब्रैंड से जुड़े दिशा-निर्देशों का इस्तेमाल किया जा सकता है या नहीं. किसी मौजूदा कैंपेन के लिए, ब्रैंड से जुड़े दिशा-निर्देशों को मैन्युअल तरीके से चालू करने के लिए, brand_guidelines_enabled
फ़ील्ड को सीधे तौर पर अपडेट करने के बजाय, CampaignService.EnablePMaxBrandGuidelines
का इस्तेमाल करें. ऐसा इसलिए, क्योंकि फ़ील्ड में बदलाव नहीं किया जा सकता. कैंपेन को सबसे अच्छा परफ़ॉर्म करने वाली ब्रैंड ऐसेट से अपने-आप भरने के लिए, auto_populate_brand_assets
को true
पर सेट करें. इसके अलावा, आपको ऑपरेशन में ऐसेट को मैन्युअल तरीके से brand_assets
के साथ जोड़ना होगा. किसी कैंपेन के लिए ब्रैंड के दिशा-निर्देशों को बंद नहीं किया जा सकता.
ज़रूरी नहीं: फ़ाइनल यूआरएल एक्सपैंशन
यूआरएल एक्सपैंशन की मदद से, परफ़ॉर्मेंस मैक्स कैंपेन की परफ़ॉर्मेंस को ऑप्टिमाइज़ किया जा सकता है. यूआरएल एक्सपैंशन का इस्तेमाल करके, ग्राहकों के इंटेंट के आधार पर, अपने फ़ाइनल यूआरएल को ज़्यादा काम के लैंडिंग पेज और डाइनैमिक हेडलाइन से बदलें. डिफ़ॉल्ट रूप से, यूआरएल एक्सपैंशन की सुविधा:
- अगर प्रॉडक्ट फ़िल्टर लागू किए गए हैं, तो यह विकल्प बंद होता है.
- सभी प्रॉडक्ट को टारगेट करते समय, इसे चालू करें.
इन डिफ़ॉल्ट सेटिंग को बदलने के लिए, Campaign.final_url_expansion_opt_out
को सेट करें.
यूआरएल एक्सपैंशन के लिए एक्सक्लूज़न सेट करने के लिए, WEBPAGE
कैंपेन के मानदंड का इस्तेमाल करें.
फ़ाइनल यूआरएल एक्सपैंशन की सेटिंग से जनरेट हुई किसी भी ऐसेट को देखने के लिए, final_url_expansion_asset_view
का इस्तेमाल करें.
अपने-आप जनरेट हुई यूआरएल एक्सपैंशन ऐसेट को हटाने के लिए, AutomaticallyCreatedAssetRemovalService
का इस्तेमाल करें.