Hi Nam, I work with Jinky. Thanks for getting back to us.
Thanks for confirming that your said feature is not possible in the Google Ads UI. To generate forecast metrics, you may breakdown your implementation for your tool in following 2 steps: Create a KeywordPlan, KeywordPlanCampaigns, KeywordPlanAdGroups, KeywordPlanCampaignKeywords, and KeywordPlanAdGroupKeywords. Call KeywordPlanService.GenerateForecastMetrics with that keyword plan. You may try to use bulk mutates, and see if it helps you. Also, BatchJobService supports all of the operations listed in MutateOperation, with a few important exceptions. The Google Ads API executes all operations in a job with partial failure enabled. However, the following operations in MutateOperation do not support partial failure because they must be atomic. As a result, they are not supported within batch jobs and you should avoid adding them to your jobs. If you need to execute any of these operations, use the mutate method of GoogleAdsService instead, and set partial_failure to false in your requests. Your one request of GoogleAdsService.Mutate containing MutateOperation may create following: creating 199 KeywordPlans creating 199 KeywordPlanCampaigns creating 199 KeywordPlanAdGroups creating 1000 KeywordPlanAdGroupKeywords under each KaywordPlanAdGroup. Once you created the KeywordPlan, then second step is to run code example to make request to KeywordPlanService.GenerateForecastMetrics after creating the KeywordPlan, and then iterates through each of the KeywordPlanKeywordForecasts and displays each of the forecast metrics. I hope this helps. Let us know if you have any questions. Regards, Yasar Google Ads API Team ref:_00D1U1174p._5004Q2hz9s8:ref -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "Google Ads API and AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/bkGHs000000000000000000000000000000000000000000000ROO1LZ00dPFiuJYARcKN8YWAEGhP1Q%40sfdc.net.
