Re: Call-to-Action Help

2018-04-26 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi,

Your concern is more specific to the AdWords UI/product level, rather than 
the AdWords API. You can post your concern in the AdWords Community Forum 
 
for 
further assistance as our team only supports AdWords API related 
issues/concerns.

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2e8f3c50-3eb4-43a1-bb71-d39e2b67faf5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Python support for new Ads API?

2018-04-26 Thread Vladimir Tatarsky

Hi Josh, any thoughs about PHP support?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/46a092f5-dbd1-4a12-90f2-9b145740b802%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Structured Snippet Feed Item Setting Locale

2018-04-26 Thread wtemmerman
Hi Dhanya,

Thank you for your response.
Can you tell me what is the impact of having danish for example, instead 
English, on the Ads, about the display system.
Is there any importance in the choice of language in the term geolocation.

Regards
Wilfried

On Thursday, April 19, 2018 at 3:43:07 PM UTC-4, Dhanya Sundararaju 
(AdWords API Team) wrote:
>
> Hi all,
>
> We are aware of the issue and this is currently being worked upon. I will 
> update on this thread when it is fixed. As a workaround, you may use the UI 
> to add a Structured Snippet or update the locale. Unfortunately, I do not 
> have an ETA. Please let me know if you have further questions.
>
> Regards,
> Dhanya, AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/55ec9771-67d1-4ff6-9208-08eca90cb501%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Use Greater than in where clause using AWQL

2018-04-26 Thread Leon Pidgeon


We are running a query using AWQL with the FeedItemService but want to filter 
the results by EndTime. 

Previously using the old googleads-php-lib we were able to do it like this


$awql = 'SELECT KeywordText,TargetingAdGroupId,TargetingCampaignId,FeedItemId, 
FeedId, Status, AttributeValues, 
 EndTime
WHERE Status IN[ENABLED] AND EndTime > ' . date('Ymd', strtotime(' -1 day'));


We have updated to the new version and now our code is


$query = (new ServiceQueryBuilder())
->select([
'KeywordTargetingText',
'TargetingAdGroupId',
'TargetingCampaignId',
'FeedItemId',
'FeedId',
'Status',
'AttributeValues',
'EndTime'
])
->where('Status')->in(['ENABLED'])
->where('EndTime')->greater_than([date('Ymd', strtotime(' -1 day'))])
->build();


The greater than syntax does not work so how can we perform this same action?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/15d55659-9704-4d83-beb2-5d98b9d572f1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Structured Snippet Feed Item Setting Locale

2018-04-26 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Wilfried,

When you choose your language as Danish, and header as say for example, 
'Tjenester': which means 'Services' in Danish, the header will show up as 
'Tjenester' front of the values (snippets) you enter. To understand the 
effect of geolocation on the value of header, I would suggest you post your 
question on the Advertiser Community Forum 
 
as 
it is a product level question. Please let me know if you have any further 
questions on API 

.

Regards,
Dhanya, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3be956d6-31ff-4222-9e13-43085cda96ca%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Use Greater than in where clause using AWQL

2018-04-26 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Leon,

Could you let me know what was your previous version? You will need to pull 
up the date that you need, say for example . date('Ymd', strtotime(' -1 
day')), format it and then use ->equalTo() to filter. For example the SOAP 
request would look like as below:

SELECT EndDate, Id, Name, Status WHERE EndDate = "20180426" AND Name 
= "Interplanetary Cruise banner #2392a7d4-6000-42dc-b15a-1de84a3" LIMIT 
0,100

Please give it a try let me know if you have any further questions.

Regards,
Dhanya, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/cfe8ca2a-d02d-4895-b3cc-50227b26a090%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Adwords Api AD_PERFORMANCE_REPORT v201710

2018-04-26 Thread google
Hi,

we have a problem with the adwords "AD_PERFORMANCE_REPORT" - v201710.

Here we get back a row for each ad, but some ads are missing, which we get 
for example in the Adwords Dashboard.

We have the missing ads compared to those that are in the api result, but 
unfortunately could not find any difference in the configuration.

Following ReportFields are enabled:
'Id',
'Cost',
'Engagements',
'CampaignId',
'AdGroupId',
'Date',
'Impressions',
'ActiveViewCpm',
'Clicks',
'Ctr',
'ActiveViewCtr',
'AllConversions',
'Interactions',
'InteractionTypes',
'AverageCpc',
'AverageCpm',
'ActiveViewCpm',
'AverageCpv',
'VideoViews',
'VideoViewRate',
'VideoQuartile25Rate',
'VideoQuartile50Rate',
'VideoQuartile75Rate',
'VideoQuartile100Rate',
'ViewThroughConversions',
'AveragePosition',
'ActiveViewMeasurability',
'ActiveViewMeasurableCost',
'AdNetworkType1',
'AdNetworkType2',
'CampaignName',
'AdGroupName',
'AdType',
'Description',
'DisplayUrl',
'Headline',
'ImageAdUrl'

The affected Ad Account ID is: 540-817-7149
We want to display the ads segmented by date - but some are missing. And we 
cant get behind why :/

Thanks in advance!
Deniz Laun

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/329b8b39-4abb-4916-9a92-54e94762c16a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


I am getting millions back through TargetingIdeas API rather than hundreds. Location set to one city

2018-04-26 Thread Pimmy
Hi Everyone,

I am getting millions back for the SEARC_VOLUME rather than the expected 
hundreds:
*Keyword with text 'used ford focus fc42f77b', average monthly search 
volume 5755414*

Am I interpreting the response wrong? Can anyone please help me out? Thanks 
very much for taking the time to read.



I have added the Search parameters thus:

$locationParameter = new LocationSearchParameter();
$buckingham = new Location();
$buckingham->setId(1006579);
$locationParameter->setLocations([$buckingham]);
$searchParameters[] = $locationParameter;

//dd($searchParameters);

// Create network search parameter (optional).
$networkSetting = new NetworkSetting();
$networkSetting->setTargetGoogleSearch(true);
$networkSetting->setTargetSearchNetwork(false);
$networkSetting->setTargetContentNetwork(false);
$networkSetting->setTargetPartnerSearchNetwork(false);

$networkSearchParameter = new NetworkSearchParameter();
$networkSearchParameter->setNetworkSetting($networkSetting);
$searchParameters[] = $networkSearchParameter;

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/31e655fb-a1a7-40cf-b694-2c63a6355ce8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Keywords Performance Report Importing Removed Keywords

2018-04-26 Thread 'Tyler Kekona' via AdWords API and Google Ads API Forum
I am attempting to import 'removed' Keyword data using the ReportDefinition 
KEYWORDS_PERFORMANCE_REPORT.
I tried sending requests both without any filters, as well as with the 
Predicate:
Predicate keywordPredicate = new Predicate
{
field = "Status",
@operator = PredicateOperator.EQUALS,
values = new string[] { "REMOVED" },
};

For the first request I sent without any filters, I was successfully able 
to import all active Keywords, but was not returned any Keywords with the 
status 'removed'.
The second request returned an empty data set.

I was trying to find some documentation on deleted/removed keywords, but 
was unable to find anything that would explain the behavior I am 
experiencing :\
Any help would be appreciated!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/674cfb06-51f4-48db-b2bf-c6f42b5f83f4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Timezone for Feeditem

2018-04-26 Thread vinayaktadas
If i create a feed item for an adcustomizer and set the StartDate, Enddate 
and the Schedule, what timezone is used for these dates when the ad is 
displayed.
Is it the Users timezone or my accounts timezone
 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/11beac50-d363-4811-b40b-595910d62edb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: AdWordsUser doesn't have authorization token

2018-04-26 Thread ironside . alexander
The error appeared during the curl command.
So I should generate new OAuth keys, use these, and create the refresh 
token using the TokenGenerator.exe right?
So far I've been generating refresh tokens using the Google Playground, 
with the scope provided
https://developers.google.com/oauthplayground/
If I'm working on localhost should I add the redirect URLs? Or would this 
work only on a live server?

W dniu poniedziałek, 23 kwietnia 2018 12:47:50 UTC-4 użytkownik Dhanya 
Sundararaju (AdWords API Team) napisał:
>
> Hi,
>
> Do you get this error when you run the curl command that was shared or 
> when you run the client library examples 
> ? Could you try 
> opening a new incognito window, then generate the client id and secret 
> using a valid AdWords user login. Also, please make sure you are using the 
> correct scope which is: "https://www.googleapis.com/auth/adwords";. After 
> that, please generate the refresh token using the OAuthTokenGenerator.exe 
> .
>  
> Then, please use those credentials to run GetCampaigns.cs 
> 
>  or GetCampaigns.vb 
> 
>  and 
> let me know if you still get errors.
>
> Regards,
> Dhanya, AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b7d705b5-1aa0-42e0-817c-50c2552c2105%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: AdWordsUser doesn't have authorization token

2018-04-26 Thread ironside . alexander
When I try to use the oauthgenerator.exe it crashes with no error report. I 
input my credentials and scopes, log in with my account, approve the 
access, and then the program stops working. Is generating the refresh token 
using the playground any different?

W dniu poniedziałek, 23 kwietnia 2018 12:47:50 UTC-4 użytkownik Dhanya 
Sundararaju (AdWords API Team) napisał:
>
> Hi,
>
> Do you get this error when you run the curl command that was shared or 
> when you run the client library examples 
> ? Could you try 
> opening a new incognito window, then generate the client id and secret 
> using a valid AdWords user login. Also, please make sure you are using the 
> correct scope which is: "https://www.googleapis.com/auth/adwords";. After 
> that, please generate the refresh token using the OAuthTokenGenerator.exe 
> .
>  
> Then, please use those credentials to run GetCampaigns.cs 
> 
>  or GetCampaigns.vb 
> 
>  and 
> let me know if you still get errors.
>
> Regards,
> Dhanya, AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/bfdd54e3-d982-45ea-8a88-108b53a65386%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: AdWordsUser doesn't have authorization token

2018-04-26 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi,

Using Google Playground sounds good but please make sure that you are 
choosing type: Web Application and opening in a incognito window while 
generating the client id and secret. Also, when you follow the steps as 
mentioned in this section of the guide 
,
 
could you please let me know which steps show different results in your 
case, however minor it may seem? Please do make a note of the 'Warnings' in 
the boxes in that section of the guide.

Having said that, since you are already using the curl, you could try to 
generate the tokens using that method. This section of the guide 

 lists 
steps on how to get the tokens using curl command. Once you have the 
refresh token generated, you could add the credentials and the refresh 
tokens in your App.config file and try to make the API call.

Please let me know which option you are following as it would be easier to 
troubleshoot sticking to one method.

Regards,
Dhanya, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/27743ab6-a12c-4b5f-bcbb-8abe360fb8e8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Python support for new Ads API?

2018-04-26 Thread 'Josh Radcliff (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Vladimir,

PHP is another one where we know there's significant interest. I don't have 
any news on that front just yet, though.

Thanks,
Josh, AdWords API Team

On Thursday, April 26, 2018 at 6:23:06 AM UTC-4, Vladimir Tatarsky wrote:
>
>
> Hi Josh, any thoughs about PHP support?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b2845b3f-4079-4d0b-be69-260730eb50d0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Timezone for Feeditem

2018-04-26 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Vinayak,

The timezone that will be used when you create the ad schedule will depend 
on the account's timezone and not the user's timezone.

Let me know if you have further clarifications.

Thanks and regards,
Luis
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7f2f9aea-f559-4df9-8487-e50bc54f72f9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I am getting millions back through TargetingIdeas API rather than hundreds. Location set to one city

2018-04-26 Thread 'Peter Oliquino (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi,

The Count 

 that 
you are getting should be a valid estimate returned by the 
TargetingIdeaService 
.
 
If you want, you may retry your request using the Keyword Planner 
 and apply the same 
filters to see if there are any significant discrepancies between the two. 
In the event that both the TargetingIdeaService and the Keyword Planner 
return similar results, then, that should be the correct estimates returned 
for your keyword.

Best regards,
Peter
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/76332353-0274-41fb-8fe4-214491ae9e84%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to bid adjust in Devices?

2018-04-26 Thread Ken Dan Tinio
How to increase bid adjust in Devices?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7dbe11ad-af89-4a4a-9304-b54d2ec56fb3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to bid adjust in Devices?

2018-04-26 Thread Ken Dan Tinio
So far I have this but doesn't seem to work


$devices = new Platform();
// $devices->setPlatformName('Desktop');
$devices->setId(3);

$biddableAdGroupCriterion = new BiddableAdGroupCriterion();
$biddableAdGroupCriterion->setAdGroupId(52012184360);
$biddableAdGroupCriterion->setCriterion($devices);
$biddableAdGroupCriterion->setBidModifier(1.5);

$adGroupCriterionOperation = new AdGroupCriterionOperation();
$adGroupCriterionOperation->setOperand($biddableAdGroupCriterion);
$adGroupCriterionOperation->setOperator(Operator::SET);
$operations[] = $adGroupCriterionOperation;   

$result = $adGroupCriterionService->mutate($operations);

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b4d8623d-521e-4640-9396-c8a2c9204f9b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Keywords Performance Report Importing Removed Keywords

2018-04-26 Thread 'Peter Oliquino (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Tyler,

Adding the *Status = REMOVED* filter should allow you to retrieve those 
removed keywords. However, to better investigate the issue, could you 
provide the complete report definition 

 you 
used and your clientCustomerId? You may reply via the *Reply privately to 
author* option.

Best regards,
Peter
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a5a1e28e-32a2-4d6c-b34c-eca0086d9ea5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Adwords Api AD_PERFORMANCE_REPORT v201710

2018-04-26 Thread 'Peter Oliquino (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Deniz,

I had to repost your initial post and removed your account information for 
security purposes. For future posts, you may refer to our forum posting 
guidelines 

 in 
order to avoid exposing sensitive information in this public forum.

*"Hi,*

*we have a problem with the adwords "AD_PERFORMANCE_REPORT" - v201710.*

*Here we get back a row for each ad, but some ads are missing, which we get 
for example in the Adwords Dashboard.*

*We have the missing ads compared to those that are in the api result, but 
unfortunately could not find any difference in the configuration.*

*Following ReportFields are enabled:*
*'Id',*
*'Cost',*
*'Engagements',*
*'CampaignId',*
*'AdGroupId',*
*'Date',*
*'Impressions',*
*'ActiveViewCpm',*
*'Clicks',*
*'Ctr',*
*'ActiveViewCtr',*
*'AllConversions',*
*'Interactions',*
*'InteractionTypes',*
*'AverageCpc',*
*'AverageCpm',*
*'ActiveViewCpm',*
*'AverageCpv',*
*'VideoViews',*
*'VideoViewRate',*
*'VideoQuartile25Rate',*
*'VideoQuartile50Rate',*
*'VideoQuartile75Rate',*
*'VideoQuartile100Rate',*
*'ViewThroughConversions',*
*'AveragePosition',*
*'ActiveViewMeasurability',*
*'ActiveViewMeasurableCost',*
*'AdNetworkType1',*
*'AdNetworkType2',*
*'CampaignName',*
*'AdGroupName',*
*'AdType',*
*'Description',*
*'DisplayUrl',*
*'Headline',*
*'ImageAdUrl'*

*The affected Ad Account ID is: XXX-XXX-*
*We want to display the ads segmented by date - but some are missing. And 
we cant get behind why :/"*

*Thanks in advance!*
*Deniz Laun*

Best regards,
Peter
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d436f6fe-2e8b-49d7-bad2-f3a170d409fd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Adwords Api AD_PERFORMANCE_REPORT v201710

2018-04-26 Thread 'Peter Oliquino (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Deniz,

As for the issue, could you provide the complete AdWords UI screenshot 
containing the ads you mentioned were not being returned by the Ad 
Performance Report? You may reply to me via the *Reply privately to author*
 option.

Best regards,
Peter
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b74e1b7a-b5f5-47a4-a97d-7957650cf63c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.