Re: generatekeywordhistoricalmetrics -> historicalmetricsoptions 4 years data

2023-07-05 Thread Lex Bunnetat
Hi thanks very much for the response. sorry, can I just clarify, the HistoricalMetricsOptions only allows 12 months then, not 4 years as per the documentation? I will take a look at the *forecast metrics*. but I do not think have what we need. The other question was about creating the

RE: generatekeywordhistoricalmetrics -> historicalmetricsoptions 4 years data

2023-07-05 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi, Thanks for reaching out to Google Ads API Support. With regards to your first concern, based on our documentation (https://developers.google.com/google-ads/api/docs/keyword-planning/generate-historical-metrics), the averages monthly searches is 12 months, and the approximate monthly search

GenerateKeywordHistoricalMetrics -> HistoricalMetricsOptions 4 years data

2023-07-05 Thread Lex Bunnetat
GenerateKeywordHistoricalMetrics only returns 12 months data, but the documentation says up to 4 years. Is the documentation wrong? I did find a post in 2020 to say that there was a feature request to increase it to 4 years, and to look at the blog. But unfortunately I cannot see how to acces

RE: HistoricalMetricsOptions in keyword idea generator using php

2022-12-07 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Tarun, Thanks for reaching out. Are you referring to the historical_metrics_options in your GenerateKeywordIdeasRequest? Can you please expand a bit on your question? Can you tell us which client library you are using? Thanks, Matt Google Ads API Team ref:_00D1U1174p._5004Q2h0JMt:ref -- -

HistoricalMetricsOptions in keyword idea generator using php

2022-12-07 Thread Tarun Kumar
while making generate key Idea request i am not able to find how to pass historical data matrices for average CPC do i have pass iin array or requestOptionalArgs var need help ASAP -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blog

RE: bug in Keyword Planning -> historicalMetricsOptions

2021-09-10 Thread Google Ads API Forum Advisor
Hi Andrey, Thanks for reaching out. Can you please reply privately with your complete request and response logs for the call that generated the internal error? Thanks, Matt Google Ads API Team Matt Google Ads API Team ref:_00D1U1174p._5004Q2NSec9:ref -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

bug in Keyword Planning -> historicalMetricsOptions

2021-09-08 Thread Andrey Eblukov
Hello, seems I found a bug in the AdsAPI. If trying to set the month of JANUARY in *KeywordPlanService.GenerateHistoricalMetrics* and *KeywordPlanIdeaService.GenerateKeywordIdeass* in the format: "year_month_range" => new YearMonthRange([ "start" => new YearMonth([ "year" => 2019, "month" => Mo

RE: HistoricalMetricsOptions

2021-09-01 Thread Google Ads API Forum Advisor
Hi everyone, Thank you for reaching out to our API support team. The guides that Eric provided are correct for forecasting and for historical metrics. That said, if you are also looking for implementation solutions for Python, then you can reach out to their client library owners via this link

Re: HistoricalMetricsOptions

2021-08-30 Thread Eric Shuman
: > Hey Eric, > > Are you able to share your code. I'm also trying to get this working. And > can't seem to get it from what you've posted. > > Thanks > > On Wednesday, 23 June 2021 at 5:01:40 am UTC+10 > eric@globalstrategies.com wro

Re: HistoricalMetricsOptions

2021-08-26 Thread Alex
Hey Eric, Are you able to share your code. I'm also trying to get this working. And can't seem to get it from what you've posted. Thanks On Wednesday, 23 June 2021 at 5:01:40 am UTC+10 eric@globalstrategies.com wrote: > Hey Brad, > > I was able to set the Histo

RE: historicalMetricsOptions in KeywordIdeas doesn't work

2021-07-02 Thread Google Ads API Forum Advisor
Hi Vladislav, Thank you for reaching out to Google Ads API support. This product only officially offers support in English. It would be best to reply in English if you can. If not, we will try to use Google Translate to support you as best as we can. If you are looking for support accessing t

RE: historicalMetricsOptions in KeywordIdeas doesn't work

2021-07-02 Thread Google Ads API Forum Advisor
Hi Vadim, You can use the enum class MonthOfYear from our library, with the YearMonth and YearMonthRange classes and use our library to send the request. I have no visibility on your Month class. Regards, Aryeh Baker Google Ads API Team ref:_00D1U1174p._5004Q2JXRUH:ref -- -- =~=~=~=~=~=~=~=

Re: historicalMetricsOptions in KeywordIdeas doesn't work

2021-06-29 Thread Vladislav Tinishov
ence/rest/v8/HistoricalMetricsOptions > : > > $requestOptionalArgs['historicalMetricsOptions'] = new > HistoricalMetricsOptions([ > 'yearMonthRange' => new YearMonthRange([ > 'start' => new YearMonth([ > "year" => 2020, > "month&quo

historicalMetricsOptions in KeywordIdeas doesn't work

2021-06-29 Thread Vadim
Hello, I am trying set the date range for KeywordIdeas as stated in the documentation (PHP) https://developers.google.com/google-ads/api/rest/reference/rest/v8/HistoricalMetricsOptions: $requestOptionalArgs['historicalMetricsOptions'] = new HistoricalMetricsOptions([ 'yearMon

RE: HistoricalMetricsOptions

2021-06-24 Thread Google Ads API Forum Advisor
Hi Brad, Thank you for reaching out to us. In looking over the document that you shared with us. As well as looking at Erics response. I would suggest looking at what he mentioned for Python. Unsure what library you are using. But basically with the way that JSON is setup you will need to go th

Re: HistoricalMetricsOptions

2021-06-22 Thread Eric Shuman
Hey Brad, I was able to set the HistoricalMetricsOptions like this (in Python): keyword_plan_service = client.get_service("KeywordPlanService") metric_request = client.get_type("GenerateHistoricalMetricsRequest") resource_name = keyword_plan_service.keyword_p

HistoricalMetricsOptions

2021-06-21 Thread Brad Wilcox
I am trying to define the YearMonth settings in the HistoricalMetricsOptions from this documentation: https://developers.google.com/google-ads/api/rest/reference/rest/v8/HistoricalMetricsOptions I haven't been able to figure out how to use and haven't seen any example pieces of