About Dynamic Search Ads Setting

2018-01-17 Thread take
Dear AdWords API team,

We are version up API from v201705 to v201710.

As Migration Guide (v201708), when creating campaign, dynamic search ad 
setting is *required*. 
(https://developers.google.com/adwords/api/docs/guides/migration/v201708)

And in Migration Guide (v201710), any changes of dynamic search ad setting *is 
not mentioned*. 
(https://developers.google.com/adwords/api/docs/guides/migration/v201710)
But actually, when creating campaign, dynamic search ad setting is 

*optional.*In our system, we design that  dynamic search ad setting is 
required but in Google AdWords application and AdWords API , it is optional.
Please help me to explain

Thanks & Best Regards,
Phu

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/76c34b4b-b042-4d77-8749-5544e7ce8136%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is there a way to do this? attached image

2018-01-17 Thread Ken Dan Tinio
I already solved my problem. Here is what I did.


// Create report query to get the data for last 7 days.
$reportQuery = 'SELECT CampaignId, AdGroupId, Id, Criteria, 
CriteriaType, '
. 'Impressions, Clicks, Cost FROM CRITERIA_PERFORMANCE_REPORT '
. 'WHERE Status IN [ENABLED, PAUSED] AND Criteria IN ["fb.com", 
"tinder.com"] DURING LAST_7_DAYS';

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/81a6f652-f9a7-47dc-92fe-1d148833d596%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to get all adgroups with campaign status enable and pause?

2018-01-17 Thread Ken Dan Tinio
$selector = new Selector();
$selector->setFields(['Id', 'Name', 'Status', 'CampaignId', 
'CampaignName']);
$selector->setOrdering([new OrderBy('Name', SortOrder::ASCENDING)]);
$selector->setPaging(new Paging(0, self::PAGE_LIMIT));

I have this so far. I have already retrieved all adgroups using this 
selector.

The problem is that the adgroups that I fetch includes adgroups with 
removed campaign.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/448c4c12-22cd-4be4-9a25-2deecc0b3075%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: UNEXPECTED_INTERNAL_API_ERROR for AdGroupCriterionService

2018-01-17 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API Forum
Hi Nima,

Thank you for providing these details. Based on your SOAP logs, you should 
use the userInterestId 

 instead of the id field because this is a required field when using the 
CriterionUserInterest 

 object. 
Also take note that you should use the BiddableAdGroupCriterion 

 as 
your operand instead of the AdGroupCriterion 
.
 
You may check this sample code 

 (also available in other languages) for reference. If you still encounter 
an error, kindly provide again your SOAP request and response logs so that 
I can further investigate the issue and reply using *Reply privately to 
author.*

Thanks and regards,
Luis
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d0b5cad3-7883-46b5-88c7-a0f9569679b2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Placement targeting a specific page misinterpreted as a site section

2018-01-17 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Johnny,

I can confirm that adding this specific placement URL 
(https://www.washingtonpost.com/news/get-there/wp/2018/01/09/the-great-social-security-benefits-debate-take-it-early-or-wait/)
 
will generate an error in the AdWords API. However, when I also tried to 
add this placement URL in the AdWords UI against test account, this also 
generated a "Placement URLs must be provided in a valid URL format" 
error. Therefore, this issue is more on the AdWords product level as this 
placement URL is not acceptable in both AdWords API and UI.

You can refer to this product forum post 

 that 
talks about this specific error. Additionally, if you have further 
clarifications on why this placement URL is returning an error, you can 
post in the AdWords Community Forum 
 
for 
better assistance. 

Thanks,
Vincent
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/888c3189-bd04-49a9-8eab-b53f59bb9f31%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Base AdGroup Id with zero values for Audience Performance reports

2018-01-17 Thread makoto . kimura
For future readers:

The answer from adWords team was:  "For campaign level user list criteria, 
the BaseAdGroupId will always be 0."
That was my case.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c0db9652-b85b-4bcf-b9e0-701ee7463230%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Ad Performance Report - MediaId

2018-01-17 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API Forum
Hi,

You can use the EnhancedDisplayCreativeMarketingImageMediaId 

 and EnhancedDisplayCreativeMarketingImageSquareMediaId 

 fields 
in Ad Performance Report to pull up the MediaIDs for the landscape and 
square images respectively. Also, the MediaService 
 
can 
get you the MediaIds of all images. Sample code available in the guide 

.

Regards,
Dhanya, 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/cb0d8842-1b16-4b0f-98a0-0c6f5d492da2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Placement targeting a specific page misinterpreted as a site section

2018-01-17 Thread Johnny Brown
Hi,

When I try to create a placement criterion for this 
URL: 
https://www.washingtonpost.com/news/get-there/wp/2018/01/09/the-great-social-security-benefits-debate-take-it-early-or-wait/,
 
the adwords API returns a 
`CriterionError.INVALID_FORMAT_FOR_PLACEMENT_URL`. However that URL 
resolves to a specific page rather than a site section, so I believe the 
request is being misinterpreted by the server.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1097bb03-5972-47fb-8f5a-b11da286503f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: 0 Results on getting all campaigns.

2018-01-17 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Arnau, 

It looks like you have already set the client customer Id of the client 
account in the request. To take a closer look at the issue, could you enable 
logging  and share 
the SOAP request and response? You can use *reply privately to author* while 
sharing the details. 

Thanks,
Sreelakshmi, 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b16005ae-8b5d-4b55-99cf-8473551eeb73%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Ad Performance Report - MediaId

2018-01-17 Thread yuval
I want to use the results of Ad Performance Report to determine the best 
image ads in a campaign, and then duplicate them to other campaigns.

I can't seem to obtain the mediaId from the ad performance report, the 
field isn't listed here:

https://developers.google.com/adwords/api/docs/appendix/reports/ad-performance-report

What is the best way to do it?

Do I need to use the ad id to obtain its mediaId in a different way?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/694a53f6-40ab-4a07-b565-1477ee7c667a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


0 Results on getting all campaigns.

2018-01-17 Thread Arnau Castelltort
We configured the Manager account, and linked it to the production account. 
When we try to get all the campaigns we have 0 results.

Our adsapi_php.ini file contains all the data: developerToken, 
clientCustomerID, clientID, clientSecret and refreshToken.

Also in the PHP app we're adding the withClientCustomerId() of our client 
account.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/22ccc444-6f67-434e-a26b-4d886ff03aa4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Changing Network Settings in Draft

2018-01-17 Thread Nick R.
Thanks Vincent - you're totally right. I misunderstood NetworkSetting for 
being a criterion rather than a field in Campaign objects.  Thanks for your 
response!

On Wednesday, December 20, 2017 at 10:45:32 PM UTC-6, Vincent Racaza 
(AdWords API Team) wrote:
>
> Hi Nick,
>
> Could you confirm on why you were able to say that "Network isn't a 
> possible criteria to target"? Network is not a criterion, therefore, you 
> really could not update it in the CampaignCriterion object. You can only 
> update the network setting 
> 
>  of 
> a draft campaign in the Campaign 
> 
>  object. 
> See sample SOAP request snippets below on creating a draft campaign (via 
> DraftService.mutate() 
> )
>  
> and modifying its network setting (via CampaignService.mutate() 
> 
> ):
>
> 
> https://adwords.google.com/api/adwords/cm/v201710";>
> 
> ADD
> 
> XX
> Test Draft Sample
> 
> 
> 
> 
>
> 
>   https://adwords.google.com/api/adwords/cm/v201710";>
> 
> SET
> 
>  //This is the draft campaign ID
> 
> 
> *true
> true*
> 
> 
> 
>   
> 
>
> You can emulate the SOAP requests above and let me know if this works on 
> your end.
>
> Thanks,
> Vincent
> 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9276bd08-ccb2-4785-b6ba-0c754e558b14%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: single account listing in GetAccountHierarchy php

2018-01-17 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, 

The code sample linked will return the account hierarchy under the current 
account specified. Could you enable logging and share us the SOAP request 
and response logs along with the client customer id? Please use *Reply 
privately to author* option to provide the details. 

Regards,
Bharani, 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0acc31bc-0359-4acc-829d-97960d2fe75d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CriterionUserInterest

2018-01-17 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Nima, 

Could you double check if the *xsi_type* of the criterion is set in your 
code? If yes, could you enable logging and share the complete SOAP logs? 
Please make sure to redact all the sensitive information in your logs. If 
you need instructions to enable logging, please check the README file of 
the client library 
 that you 
are using. 

Thanks,
Sreelakshmi, 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8e5ee2a2-2b6c-493f-bc03-da26a180c8e1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: UNEXPECTED_INTERNAL_API_ERROR for AdGroupCriterionService

2018-01-17 Thread Nima Mirbakhsh
Hi Luis,

Yes, I still receive the same error. I am coding in Node and using this 
package: https://www.npmjs.com/package/node-adwords to connect to the api.

As I mentioned before, I can create campaigns, adwords, and other criterions 
for gender, age, etc. with no error. Here is the SOAP request:

http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";  
xmlns:tns="https://adwords.google.com/api/adwords/cm/v201710"; 
xmlns:jaxb="http://java.sun.com/xml/ns/jaxb";>



https://adwords.google.com/api/adwords/cm/v201710"; 
xmlns="https://adwords.google.com/api/adwords/cm/v201710";>

x

x

false

xxx-xxx-







https://adwords.google.com/api/adwords/cm/v201710";>



ADD







80675














Error:


http://schemas.xmlsoap.org/soap/envelope/";>



https://adwords.google.com/api/adwords/cm/v201710";>

000562f9926f88780a017e03a0048c41

AdGroupCriterionService

mutate

1

597









soap:Server

[InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ 
com.google.ads.api.services.common.error.InternalApiError.(InternalApiErro]



https://adwords.google.com/api/adwords/cm/v201710";>



[InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ 
com.google.ads.api.services.common.error.InternalApiError.(InternalApiErro]

ApiException

http://www.w3.org/2001/XMLSchema-instance"; 
xsi:type="InternalApiError">







InternalApiError.UNEXPECTED_INTERNAL_API_ERRORInternalApiErrorUNEXPECTED_INTERNAL_API_ERROR














Thanks,

Nima


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/502c141f-0fb8-45d1-93e7-7cb53009c4b0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


single account listing in GetAccountHierarchy php

2018-01-17 Thread developer . djax
Hi,

I need to return all customer lists in array format 
from GetAccountHierarchy.php file and need to check with the user given id.
But on using the file mentioned in below given url:
https://github.com/googleads/googleads-php-lib/blob/master/examples/AdWords/v201710/AccountManagement/GetAccountHierarchy.php

Its is returning only one value .
Please suggest me to get all customer details 

Regards,
Djax developer.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3a4b3674-c8fb-4e16-96f5-5dad56dfeaa4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: is there a way to fetch all campaigns with adgroups?

2018-01-17 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API Forum
Hi Ken,

You may try to use the AdGroupService.get() 

 or Adgroup Performance Report 

 to 
retrieve all the ad groups with their corresponding campaigns. Though you 
may get limited fields for the campaigns for both service and report. You 
may check this guide 

 for 
the available fields using the AdGroupService, sample code 

 in 
PHP, reporting guide 
 and sample 
reporting 
 in 
PHP for references. If the fields that you are looking for in a campaign 
are not available in the ad group level, then you need to create another 
request to get these fields via CampaignService.get() 

 or 
in Campaign Performance Report 

.

Hope this helps!

Thanks and regards,
Luis
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4ec25fc6-73f8-4aad-a1d6-f34f44ab70d9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CriterionUserInterest

2018-01-17 Thread n . mirbakhsh
Hey guys,

I have a very similar problem. Do you guys have any suggestion?

@Sreelakshmi I tried your solution but got another error: "soap:Client: 
[AdGroupCriterionError.CONCRETE_TYPE_REQUIRED @ operations[0].operand]"

Thanks,
Nima

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c830ef79-4f23-4f06-92b1-363b598615ed%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Digits as a phone number in the title

2018-01-17 Thread Александр Головко
Hi,
 All's done!
 Thanks!

понедельник, 15 января 2018 г., 11:16:27 UTC+2 пользователь Александр 
Головко написал:
>
> Hello. 
> I have an auto parts store. 
> The part name very often consists of single digits and sometimes the 
> system determines these numbers as a phone number and rejects the ads. 
> Then I call the support service and in manual mode the moderator allows 
> these ads to be shown. 
> Now I want to download ads with digits via the API.
> Will the system skip my ads with digits in the title?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1ebdae1e-90c6-4021-8881-4bce3c69322f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Creating budget via WCF Connected service failing with error

2018-01-17 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Martin,

A gentle follow up on this. If you still have issues regarding this, then 
kindly provide the details that I asked previously via *Reply privately to 
author* option.

Thanks,
Vincent
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d7b3f7d6-a986-4e0e-a6ce-cdc464c96dfd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.