Re: Existing campaign with adgroup traffic estimation

2020-08-25 Thread denma test
Hi
Thanks for the confirmation, sure will limit the similar posts as you 
mentioned. However can you please check with my another question subject as * 
"impressionsPerDay calcualtion" *please, so i can finalize the Traffic 
estimator setup from my end.

On Tuesday, August 25, 2020 at 11:48:53 PM UTC+5:30, adsapiforumadvisor 
wrote:
>
> Hi,
>
> I see you've posted similar questions on multiple posts. Please try to 
> limit the posts you make since it'll help with our support.
>
> Unfortunately, there are no ad group estimates in the API. You will need 
> to include keywords. There is, however, a feature request to have them 
> added. Follow our blog  for 
> announcements.
>
> Regards,
> Anthony
> Google Ads API Team
>
> [image: Google Logo] 
> Anthony 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q23uSZM: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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f741b240-35e2-4f17-bc17-c1ceb5ccd272o%40googlegroups.com.


RE: Existing campaign with adgroup traffic estimation

2020-08-25 Thread Google Ads API Forum Advisor Prod
Hi,

I see you've posted similar questions on multiple posts. Please try to limit 
the posts you make since it'll help with our support.

Unfortunately, there are no ad group estimates in the API. You will need to 
include keywords. There is, however, a feature request to have them added. 
Follow our blog for announcements.

Regards,
Anthony
Google Ads API Team

Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q23uSZM: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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/VxWbp0QFMTIM00ihwFEVXoTECleIYv2p8euQ%40sfdc.net.


Existing campaign with adgroup traffic estimation

2020-08-25 Thread denma test
Hi
I have created a campaign with one adgroup, how can i get adgroup 
estimation with and without keywords. Have done code as like below

public function trafficExists(){
$session = self::setSession();
$adWordsServices = new AdWordsServices();
$trafficEstimatorService = $adWordsServices->get($session, 
TrafficEstimatorService::class);

// adGroupEstimateRequests
$adGroupEstimateRequest = new AdGroupEstimateRequest();
$adGroupEstimateRequest->setAdGroupId(18503567);

// Create keywords. Up to 2000 keywords can be passed in a single 
request.
$keywords = [];

$keyword = new Keyword();
$keyword->setText('loans');
$keyword->setMatchType(KeywordMatchType::BROAD);
$keywords[] = $keyword;

$keyword = new Keyword();
$keyword->setText('insurance');
$keyword->setMatchType(KeywordMatchType::BROAD);
$keywords[] = $keyword;

$keyword = new Keyword();
$keyword->setText('banking');
$keyword->setMatchType(KeywordMatchType::BROAD);
$keywords[] = $keyword;

// Create a keyword estimate request for each keyword.
$keywordEstimateRequests = [];
foreach ($keywords as $keyword) {
$keywordEstimateRequest = new KeywordEstimateRequest();
$keywordEstimateRequest->setKeyword($keyword);
$keywordEstimateRequests[] = $keywordEstimateRequest;
}

// Create ad group estimate requests.
$adGroupEstimateRequest = new AdGroupEstimateRequest();
$adGroupEstimateRequest->setKeywordEstimateRequests(
$keywordEstimateRequests
);

$money = new Money();
$money->setMicroAmount(100);
$adGroupEstimateRequest->setMaxCpc($money);

// Create campaign estimate requests.
$campaignEstimateRequest = new CampaignEstimateRequest();
$campaignEstimateRequest->setAdGroupEstimateRequests(
[$adGroupEstimateRequest]
);

$campaignEstimateRequest->setCampaignId(10942093123);

$selector = new TrafficEstimatorSelector();
$selector->setCampaignEstimateRequests([$campaignEstimateRequest]);

// Optional: Request a list of campaign level estimates segmented by
// platform.
$selector->setPlatformEstimateRequested(true);

$result = $trafficEstimatorService->get($selector);

print_r($result);
exit();
}
However the result is not matched with Adgroup estimate result. The thing 
is adgroup estimates working in google ads UI even there is no keywords 
setup, it changed when changing demographic targets too. Please let me know 
the solution for below
1. Created Adgroup estimates without keywords
2. Created Adgroup estimates with Verticals, Demographic, Placements
Once i done this will worl while create new campaign, it would be easier if 
i done the above. Please share me exact example code in PHP.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f184888d-ae4b-4ae0-a3a9-4076e9693064o%40googlegroups.com.


RE: To get the keyword traffic estimation with long tail keywords

2020-07-08 Thread Google Ads API Forum Advisor Prod
Hi,

I've deleted your most recent post because there was sensitive information on 
your post. For your security, please make sure you refrain from posting 
sensitive information, and if you'd like to send us this information, please 
use "reply privately to the author" as mentioned previously.

As for your concern with complex and minor long tail keywords, I'll take a 
closer look at this internally with my team and get back to you as soon as 
possible.

Thank you,
Bryan, Google Ads API Team
ref:_00D1U1174p._5004Q21jKGA: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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/gn1Dr0QD5XN6001u6UkN-mSweGPsb-ygrRBw%40sfdc.net.


RE: Traffic estimation

2020-02-25 Thread Google Ads API Forum Advisor Prod
Hi Linkeo,

Thank you for reaching out. Please see this guide on best practices. Other than 
that, there isn't much you can do since these are ver large calls.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UXTBa9: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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/F9Mqn0Q69Y7Z00oI3sp5KTSnGz_FIhluxXOg%40sfdc.net.


Traffic estimation

2020-02-25 Thread Linkeo Linkeo
Hi, 

I'm trying to estimate traffic for 20 different keywords.

The goal is to find the smallest CPCmax for a position below 1.5

For each keyword I create a CampaignEstimateRequest, an 
AdGroupEstimateRequest and  a KeywordEstimateRequest. {

  I then make several calls to the trafficEstimatorService with CPCMax 
values between 1 and 60.
  In order to converge more quickly I use a dichotomous approach.
  For a precision of 2 on the CPCMax, I obtain a convergence in 6 requests.
}

I use a different thread to perform the processing of each keyword, as well 
as a different account within the MCC so as not to reach the maximum call 
limit.

It takes about 15 seconds and 120 request for 20 keywords. Is there a 
faster way?

--> I've tried several keywords in one adgroup in a unique request but some 
results were null, which was not the case if I request separately.


thanks for help!

/A

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2b27a799-f654-44b2-b73d-3b1ce328338f%40googlegroups.com.


Re: Traffic Estimation Service Data for Search campaign

2020-01-23 Thread Google Ads API Forum Advisor Prod
Hi Pradeep,

Can you please provide the complete detailed request and response logs and a 
screenshot of the UI keyword planner via reply privately to author? You can 
find information on enabling logging in the ReadMe of your client library.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001USwhyO: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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/NTjEE0Q4KEA300AOJOLPk8RyC6Gb2eOrSlug%40sfdc.net.


Re: Traffic Estimation Service Data for Search campaign

2020-01-22 Thread Pradeep Datla


On Wednesday, January 22, 2020 at 1:44:16 PM UTC-8, Pradeep Datla wrote:
>
> Hi Mitchell,
>
> We took your advice and now we are taking maxCPC and daily budget from the 
> user. But even after sending both maxCPC(in KeywordEstimateRequest) and 
> dailyBudget(in CampaignEstimateRequest), the clicks count i get from api 
> dont match with the one shown in keywordplanner forecast UI offered by 
> google. I have added the same parameter into api like presented in UI. The 
> only difference i see is the *daterange *selected which is not offered in 
> API
>
> I logged in with the same user credentials in UI as the accesstoken i am 
> passing in API. I followed all the steps from : 
> https://developers.google.com/adwords/api/docs/guides/traffic-estimator-service
> We are simulating for Proposed Campaign. so i am not passing any campaign 
> id or adgroup id
> I have used the same exact keywords (Broad Match) , Location , Language 
> And Search Network , maxCPC and i matched the daily budget to the estimate 
> provided by UI. Still the results i got did not match with UI.
>
> Please provide solution, what could be wrong.
>
> Thank You,
> Pradeep Datla.
>
>
>
>
>
> On Tuesday, January 21, 2020 at 10:14:51 AM UTC-8, adsapiforumadvisor 
> wrote:
>>
>> Hi Pradeep,
>>
>> The TargetingIdeaService's average CPC is based on historical metrics so 
>> it is a good projection but will not accurately reflect the CPC for the 
>> keyword in the user's ad group. I recommend implementing a way to get the 
>> max CPC from the user as it is very specific to their account. If this is 
>> not possible, you can estimate it based on the values returned from the 
>> TargetingIdeaService however this isn't likely to match the forecast shown 
>> for the ad group.
>>
>> Regards,
>> Mitchell
>> Google Ads API Team
>>
>> ref:_00D1U1174p._5001USwhyO: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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4e25e437-7f50-43c8-99ad-11e16a326a8e%40googlegroups.com.


Re: Traffic Estimation Service Data for Search campaign

2020-01-22 Thread Pradeep Datla
Hi Mitchell,

We took your advice and now we are taking maxCPC and daily budget from the 
user. But even after sending both maxCPC(in KeywordEstimateRequest) and 
dailyBudget(in CampaignEstimateRequest), the clicks count i get from api 
dont match with the one shown in keywordplanner forecast UI offered by 
google. I have added the same parameter into api like presented in UI. The 
only difference i see is the datarange selected which is not offered in API

I logged in with the same user credentials in UI as the accesstoken i am 
passing in API. I followed all the steps from : 
https://developers.google.com/adwords/api/docs/guides/traffic-estimator-service
We are simulating for Proposed Campaign. so i am not passing any campaign 
id or adgroup id
I have used the same exact keywords (Broad Match) , Location , Language And 
Search Network , maxCPC and i matched the daily budget to the estimate 
provided by UI. Still the results i got did not match with UI.

Please provide solution, what could be wrong.

Thank You,
Pradeep Datla.





On Tuesday, January 21, 2020 at 10:14:51 AM UTC-8, adsapiforumadvisor wrote:
>
> Hi Pradeep,
>
> The TargetingIdeaService's average CPC is based on historical metrics so 
> it is a good projection but will not accurately reflect the CPC for the 
> keyword in the user's ad group. I recommend implementing a way to get the 
> max CPC from the user as it is very specific to their account. If this is 
> not possible, you can estimate it based on the values returned from the 
> TargetingIdeaService however this isn't likely to match the forecast shown 
> for the ad group.
>
> Regards,
> Mitchell
> Google Ads API Team
>
> ref:_00D1U1174p._5001USwhyO: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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5214add8-1df2-4ca4-a8ea-7dd62010bca2%40googlegroups.com.


Re: Traffic Estimation Service Data for Search campaign

2020-01-21 Thread Google Ads API Forum Advisor Prod
Hi Pradeep,

The TargetingIdeaService's average CPC is based on historical metrics so it is 
a good projection but will not accurately reflect the CPC for the keyword in 
the user's ad group. I recommend implementing a way to get the max CPC from the 
user as it is very specific to their account. If this is not possible, you can 
estimate it based on the values returned from the TargetingIdeaService however 
this isn't likely to match the forecast shown for the ad group.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001USwhyO: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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/_bbp-0Q4GYO700JVoOkSuQQ7WnzNe0K_r76Q%40sfdc.net.


Re: Traffic Estimation Service Data for Search campaign

2020-01-17 Thread Pradeep Datla

As i dont have maxCPC from the user , Can i average the avgCPC of the 
keywords user selected from "TargetingIdeaService" and send it as maxCPC.* 
Is this the right way to guess maxCPC value? *
also *please suggest* if there is any alternative to comeup with a maxCPC 
value to get the traffic estimation

-Pradeep Datla.

On Friday, January 17, 2020 at 10:17:06 AM UTC-8, adsapiforumadvisor wrote:
>
> Hi Pradeep,
>
> Thank you for reaching out. As explained here 
> <https://developers.google.com/adwords/api/docs/guides/traffic-estimator-service#mapping_to_the_keyword_planner>,
>  
> the TrafficEstimatorService is meant to mimic the keyword planner in the UI 
> so the values you are getting are the expected values. Unfortunately, there 
> is no way to retrieve the daily estimates from the screenshot you provided.
>
> Regards,
> Mitchell
> Google Ads API Team
>
> ref:_00D1U1174p._5001USwhyO: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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4821755f-a7b1-4450-baed-8a579e4f1f87%40googlegroups.com.


RE: Traffic Estimation Service Data for Search campaign

2020-01-17 Thread Google Ads API Forum Advisor Prod
Hi Pradeep,

Thank you for reaching out. As explained here, the TrafficEstimatorService is 
meant to mimic the keyword planner in the UI so the values you are getting are 
the expected values. Unfortunately, there is no way to retrieve the daily 
estimates from the screenshot you provided.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001USwhyO: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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5VC2-0Q49K3U00sgf-AcbzRrKQLNprjSiG_A%40sfdc.net.


Traffic Estimation Service Data for Search campaign

2020-01-16 Thread Pradeep Datla
Hi,

We are creating Search Campaign through API and using 
"TargetingIdeaService" to get Keywords Ideas. Based on keywords selected by 
the user and selected Campaign Budget we want to show the reach.

we dont have a maxCPC value from the user and we only take the budget per 
day value. So when i am using "TrafficEstimatorService" the results i am 
getting never match the values shown in Google UI(as i have to set maxCPC 
to some number). 


I dont think i have implemented "TrafficEstimatorService" wrong, as the api 
results i get match the data shown in Google ads Keyword planner forecasts 
tab(when i use the same maxCPC in both api and planner UI). My problem is 
that the data does not match the Google Ads UI while creating Search Ad, 
which is what we are trying to provide user through our system.

*Is there any other service or method i can use to get the right data?*

I have attached a screenshot of Google Ads UI to show the daily estimates i 
am referring to.

[image: estimatorService.jpg]


Thank You,
Pradeep Datla.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d6f9b429-65e8-4f28-aae0-c61a5f7def0e%40googlegroups.com.


Re: Traffic estimation for mobile app campaign

2015-07-06 Thread Umesh Dengale
Hello,

Currently, there is no plan to add above functionality to the AdWords API. 
Please refer to the AdWords API blog 
 for any 
updates or announcements.

Thanks,
Umesh, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a7ea62a3-1325-489a-bd35-5bd68d9a6dd1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Traffic estimation for mobile app campaign

2015-07-01 Thread artem . bikov . ingate
Are you planning to add this function?

среда, 1 июля 2015 г., 20:53:08 UTC+3 пользователь Umesh Dengale написал:
>
> Hello,
>
> The AdWords API does not support the traffic estimation for the Mobile 
> app installs campaign.
>
> Thanks,
> Umesh, AdWords API Team.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1f9d94fa-9e20-4a6f-b034-0dda909487d6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Traffic estimation for mobile app campaign

2015-07-01 Thread Umesh Dengale
Hello,

The AdWords API does not support the traffic estimation for the Mobile app 
installs campaign.

Thanks,
Umesh, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9f0c7c75-f057-4dce-a47f-61ba91bb24f6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Traffic estimation for mobile app campaign

2015-06-30 Thread artem . bikov . ingate
Hello.
I'm looking for api to get traffic estimation for mobile app installs 
campaign. I can't use TrafficEstimationService, because I don't have 
keywords.
How I can get estimation?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/bdbbf9b1-592e-4629-a14b-22d0d43d5b23%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Traffic estimation API

2014-03-26 Thread Michael Cloonan (AdWords API Team)
Hi,

Traffic estimation is based on historical performance, but it is not 
limited specifically to the history of the account in question. It is more 
of a wide-scale historical prediction.

Regards,
Mike, AdWords API Advisor

On Monday, March 24, 2014 10:09:06 PM UTC-4, Cap'n of d'Ship wrote:
>
> When we do traffic estimation via the API, is the result based on the 
> historical performance of the account? 
>
> Thanks!
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Traffic estimation API

2014-03-24 Thread Cap'n of d'Ship
When we do traffic estimation via the API, is the result based on the 
historical performance of the account? 

Thanks!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Creating a reporting API - Would I be allowed to ask for traffic estimation?

2012-10-13 Thread Brice
Thank you for your answer. 

I finally find the answer in the translated version of the RMF: if you want 
to use any service like  TargetingIdeaService, TrafficEstimatorService or 
BulkOpportunityService, you need to developp all the creation and 
management functions listed in the RMFs. 

So I should developp a management API and not a Reporting-only API.

Thanks again for your answer,
Brice


-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


Re: Creating a reporting API - Would I be allowed to ask for traffic estimation?

2012-10-12 Thread Ewan Heming
Hi Brice,

I don't work for Google and the team that monitors this forum won't be able 
to answer your question directly, but the way I understand it, you can 
develop a tool like this as long as it was just using the reporting part of 
the API; however, you would need to take note of the section of the RMF 
that states which fields are required for each level of reporting you 
include. If you need definitive clarification, then you need to send your 
query to adwordsapi-tok...@google.com.

Regards,

Ewan

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


Creating a reporting API - Would I be allowed to ask for traffic estimation?

2012-10-12 Thread Brice
Hello,

I am working on the developpment of a reporting API to audit existing 
campaigns and to generate suggestions and reports for new clients (and so 
for not existing campaigns). 
I read all the RMF but I was not able to determine if I would be allowed to 
ask for traffic estimation for keywords as I only made a reporting-only API.

I beg your pardon for this question and for my english,

Regards,
Brice

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


Re: Problem with traffic estimation v201109

2012-04-23 Thread David Torres
Hi Michael,

I don't seem to find your request in our logs, could you please generate a 
new one and paste it for me to review.

Best,

-David Torres - AdWords API Team

On Monday, April 16, 2012 7:02:56 PM UTC-4, Michael Frost wrote:
>
> I'm getting back all zeros for keyword estimates for keywords that show 
> non-zero values when checked with the AdWords UI.  I've found similar 
> problems reported in the past, but none of the conditions in those posts 
> appear to apply.  I don't have one keyword stealing from others in the same 
> request since all keywords are coming back with zero metrics.  I don't have 
> an issue with currency configuration, account is configured for USD.  What 
> is odd is that we have two sub-mcc accounts in our account structure and 
> just switching between the two (a strict a-b test with only a credential 
> change) works for one account and not the other.
>
> The request ID for the failed test is 0004bd82610bff680ada42135a6f 
>
> I was hoping someone from Google could check the logs for this request and 
> explain why this account can no longer get traffic estimates.  Thanks.
>
> -mrf
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


Problem with traffic estimation v201109

2012-04-16 Thread Michael Frost
I'm getting back all zeros for keyword estimates for keywords that show 
non-zero values when checked with the AdWords UI.  I've found similar 
problems reported in the past, but none of the conditions in those posts 
appear to apply.  I don't have one keyword stealing from others in the same 
request since all keywords are coming back with zero metrics.  I don't have 
an issue with currency configuration, account is configured for USD.  What 
is odd is that we have two sub-mcc accounts in our account structure and 
just switching between the two (a strict a-b test with only a credential 
change) works for one account and not the other.

The request ID for the failed test is 0004bd82610bff680ada42135a6f 

I was hoping someone from Google could check the logs for this request and 
explain why this account can no longer get traffic estimates.  Thanks.

-mrf

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


Re: Traffic Estimation API

2010-06-22 Thread AdWords API Advisor
Hi Gary,

Unfortunately the traffic estimator service is not yet available in
v201003. Please continue using the v13 service for now.

Best,

David Torres,
AdWords API Team

On Jun 21, 10:06 am, search test  wrote:
> What is the suitable service to use to replace
> TrafficEstimatorInterface of v13?  I would like to get the average
> clicks and cpc value.
>
> Thanks,
> Gary

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


Traffic Estimation API

2010-06-21 Thread search test
What is the suitable service to use to replace
TrafficEstimatorInterface of v13?  I would like to get the average
clicks and cpc value.

Thanks,
Gary

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: traffic estimation service - problematic results when using proximity targets

2010-03-23 Thread AdWords API Advisor
Hi Guy,

ProximityTargets are not supported in the TrafficEstimatorService.
See the following thread for more details:

  
http://groups.google.com/group/adwords-api/browse_thread/thread/4bc5438e565bf135/

Best,
- Eric Koleda, AdWords API Team

On Mar 22, 6:26 am, Guy Zucker  wrote:
> Hi,
>
> I'm using the v13 traffic estimation service and I receive peculiar results
> when setting proximity targets  (radius geo targets).
>
> The following is example data I'm getting for a single keyword input (the
> output I get is max # clicks per month (aggregation of max daily clicks))
>
> keyword input: jordan shoes
>
>  geo-target input
> parameter                                            output
> no geo target
> 10018
> the
> US
>     9149
>
> TX
> 304
> Dallas Ft. Worth (Metro)                                                129
> 400 miles around 7826 la cabeza drive, Dallas                 10018
> 30 miles around 7826 la cabeza drive, Dallas                   10018
>
> Are proximity targets not supported for traffic estimation?
>
> Thanks,
>
> Guy

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en

To unsubscribe from this group, send email to 
adwords-api+unsubscribegooglegroups.com or reply to this email with the words 
"REMOVE ME" as the subject.


AdWords API traffic estimation service - problematic results when using proximity targets

2010-03-22 Thread Guy Zucker
Hi,

I'm using the v13 traffic estimation service and I receive peculiar results
when setting proximity targets  (radius geo targets).

The following is example data I'm getting for a single keyword input (the
output I get is max # clicks per month (aggregation of max daily clicks))

keyword input: jordan shoes

 geo-target input
parameteroutput
no geo target
10018
the
US
9149

TX
304
Dallas Ft. Worth (Metro)129
400 miles around 7826 la cabeza drive, Dallas 10018
30 miles around 7826 la cabeza drive, Dallas   10018

Are proximity targets not supported for traffic estimation?

Thanks,

Guy

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en

To unsubscribe from this group, send email to 
adwords-api+unsubscribegooglegroups.com or reply to this email with the words 
"REMOVE ME" as the subject.