Re: Google Ads API JSON REST POST Request - MutateMembers

2020-04-28 Thread Gregory Gan
Hi Michell,

Would being on a test account be the reason also as to why the size doesn't 
change? 

Cheers,
Greg 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c05bd974-6439-4576-9a47-3b2e40023a62%40googlegroups.com.


Equal rows for report with AdGroupStatus

2020-04-28 Thread Pavel Grivachev
Hi, 

When I use request without AdGroupStatus field I have one row result.

Request:
curl --http1.1 \
--header "Authorization : Bearer {token}" \
--header "developerToken : {developerToken}" \
--header "includeZeroImpressions: false" \
--header "clientCustomerId : {clientCustomerId}" \
--data "__rdquery=SELECT Impressions, AdNetworkType1, Conversions, 
EffectiveFinalUrl, CampaignId, Device, CampaignName, Clicks, VideoViews, 
Cost, Date, InteractionTypes FROM FINAL_URL_REPORT WHERE CampaignId={
CampaignId} AND Device=DESKTOP DURING+20191230,20191230&__fmt=CSV" \
https://adwords.google.com/api/adwords/reportdownload/v201809


I get the following result (some values are hidden). 
Response:
"FINAL_URL_REPORT (Dec 30, 2019)"
Impressions,Network,Conversions,Final URL,Campaign ID,Device,Campaign,Clicks
,Views,Cost,Day,Interaction Types
250,Search Network,0.00,{EffectiveFinalUrl},{CampaignId},Computers,{
CampaignName},0,0,0,2019-12-30, --
Total, --,0.00, --, --, --, --,0,0,0, --, --


When I use request with AdGroupStatus field I have two row result:

curl --http1.1 \
--header "Authorization : Bearer {token}" \
--header "developerToken : {developerToken}" \
--header "includeZeroImpressions: false" \
--header "clientCustomerId : {clientCustomerId}" \
--data "__rdquery=SELECT Impressions, AdNetworkType1, Conversions, 
EffectiveFinalUrl, CampaignId, Device, CampaignName, Clicks, VideoViews, 
Cost, Date, InteractionTypes, *AdGroupStatus* FROM FINAL_URL_REPORT WHERE 
CampaignId={CampaignId} AND Device=DESKTOP 
DURING+20191230,20191230&__fmt=CSV" \
https://adwords.google.com/api/adwords/reportdownload/v201809

Response:
"FINAL_URL_REPORT (Dec 30, 2019)"
Impressions,Network,Conversions,Final URL,Campaign ID,Device,Campaign,Clicks
,Views,Cost,Day,Interaction Types,Ad group state
125,Search Network,0.00,{EffectiveFinalUrl},{CampaignId},Computers,{
CampaignName},0,0,0,2019-12-30, --,enabled
125,Search Network,0.00,{EffectiveFinalUrl},{CampaignId},Computers,{
CampaignName},0,0,0,2019-12-30, --,enabled
Total, --,0.00, --, --, --, --,0,0,0, --, --, --

These two rows are equal (all fields have the same values). Why in the 
second case I have two equal rows with AdGroupStatus == enabled? In my 
understanding it should be two rows only if they have different values. Am 
I wrong?

If it is expected behavior, can I somehow add id for each row to to 
distinguish rows from each other? May be add some field that guaranteed 
unique for each row?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c4f57236-b7a6-4a5d-bbed-dac278e32d83%40googlegroups.com.


Re: AdWordUser object

2020-04-28 Thread Haik

 I also got this error. I am not using any Azure. I have a .net core 
console app

Could not load type 'System.Web.Hosting.HostingEnvironment' from assembly 
'System.Web, Version=4.0.0.0, Culture=neutral, 
PublicKeyToken=b03f5f7f11d50a3a'.":"System.Web.Hosting.HostingEnvironment"

This line causes a crash: AdWordsUser user = new AdWordsUser();


OP Did you manage to find a solution?




On Wednesday, January 22, 2020 at 12:33:59 AM UTC+2, API_DCH wrote:
>
> Hi, 
>
> I am trying to create an azure function to retrieve data from Google Ad's 
> account. The function fail when it try to create the AdWordsUser object, it 
> is looking for the appconfig file.
> I would like to override the function by passing a prebuilt config file or 
> headers. I tried both ways
>
> AdWordsUser usr = new AdWordsUser(appConfig);
> AdWordsUser adwordsUser = new AdWordsUser(headers);
>
> it errors out with following message
>
> System.Private.CoreLib: Exception while executing function: 
> GenerateGoogleAdsRpt. Google.Ads.Common: Could not load type 
> 'System.Web.Hosting.HostingEnvironment' from assembly 'System.Web, 
> Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.
>
>
> It is failing on the following function call, it looks for the sectionname 
> = "AdWordsApi"
>
> protected void LoadFromAppConfigSection(string sectionName)
> {
> ReadSettings(ReadAppConfigSection(sectionName));
> }
>
> Have anyone found the solution already or found an alternate solution, 
> please let me know. I appreciate your help.
>
>
> Thanks
> Sam
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/e395fe62-f3f2-4d73-9458-20a7e0e33d47%40googlegroups.com.


Re: Try after 30 seconds

2020-04-28 Thread Google Ads API Forum Advisor Prod
Hi Ramanajee,

Thank you for providing the logs! I have responded in the other thread. For 
tracking purposes, please continue the discussion on the private thread.

Thanks,
Danica Calusin, Google Ads API Team
ref:_00D1U1174p._5001UaSI4c: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/b4yph0Q9IOCQ00OVVocAWIQbSoAuEG4ntkfQ%40sfdc.net.


Re: How do I get Product Feed data from Merchant Account?

2020-04-28 Thread Ankit Agarwal

>
> As I was looking for solutions, I found this permission "content api for 
> shopping" permission.
>

Here is a link: 
https://developers.google.com/shopping-content/reference/rest/v2.1/products?hl=en_US
Can you please verify, is this the right link to fetch product data 
required to create product groups. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/15a4be81-be47-4af8-99bd-44c1e26dc357%40googlegroups.com.


RE: How do I get Product Feed data from Merchant Account?

2020-04-28 Thread Google Ads API Forum Advisor Prod
Hello,


Unfortunately, it is not currently possible to retrieve feed data from the 
Merchant Center via AdWords API. If you have any additional questions regarding 
the API, please do not hesitate to reach out.

Thanks,

Danica Calusin, Google Ads API Team
ref:_00D1U1174p._5001UaSdOq: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/BewUW0Q9IMFG0064jziW-wTWy2uSZzjWSOPA%40sfdc.net.


RE: Why ad_group_ad.ad.final_urls is a list?

2020-04-28 Thread Google Ads API Forum Advisor Prod
Hi Jarek,

Thank you for reaching out. When you create the ad you only fill in one final 
URL. However, this url could redirect to other URLs. ad_group_ad.ad.final_urls 
returns a  list of possible final URLs after all cross-domain redirects for the 
ad. Let me know if you have any further questions.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UaSe0u: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/tX5vx0Q9IL6H00nLelWBO5TB6ItIMOz8485w%40sfdc.net.


RE: Fetch report with all values of AdGroupStatus and CampaignStatus

2020-04-28 Thread Google Ads API Forum Advisor Prod
Hi Pavel,

Thank you for reaching out. REMOVED campaigns and ad groups should show by 
default in all reports unless you specifically filter them out. As Zweitze 
noted, my team has come across some inconsistencies with this and we are in the 
process of investigating this issue. Though the filter is not necessary, it 
can't hurt to ensure that your report returns what you expect.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UaScTP: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/x_dW90Q9IETI00QU6Plu_lQXOkobwzCUF1YA%40sfdc.net.


Re: How to add global negative placements

2020-04-28 Thread Google Ads API Forum Advisor Prod
Hello,

I will add a feature request on your behalf to have this added to the API.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001UaSU68: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/ikBoy0Q9IEHM00C_0dSoe-Qw2B-UqNfCUlUA%40sfdc.net.


Re: How to check conversion which are imported from GA

2020-04-28 Thread Google Ads API Forum Advisor Prod
Hi Xiaoying,

Unfortunately, it is not possible to get ConversionTrackerIds' other properties 
within Account Performance report and Search Query Performance report. You may 
refer to this documentation (Account Performance) and this documentation 
(Search Query Performance) for a list of all available properties that can be 
reported on.

Let me know if you have any additional questions.

Thanks,
Danica Calusin, Google Ads API Team
ref:_00D1U1174p._5001UZVMto: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/94Gsu0Q9IE2Q004FEQQdOLSN-wNMHSecQn3w%40sfdc.net.


RE: Google Ads API JSON REST POST Request - MutateMembers

2020-04-28 Thread Google Ads API Forum Advisor Prod
Hi Gregory,

To answer your first question, you need to feed it the list of members you want 
to remove. The members should be the same as they are in the UserList.

For your other questions, it can take up to 12 hours to show the updated 
UserList as explained here. If you added more than 1000 members to the list, 
the size should show properly. If it has been more than 12 hours and you are 
still seeing 0 members, please share your client customer ID via Reply 
privately to author.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UZYbxK: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/Irxoa0Q9ICCV00wNU50LbQRTqekCRkYm1VGg%40sfdc.net.


Re: AttributeError: 'GoogleAdsRow' object has no attribute 'results

2020-04-28 Thread Google Ads API Forum Advisor Prod
Hi Greenleaf,

Thank you for reaching out. In order for me to further investigate, could you 
please share the complete request and response logs along with the source code 
you used and the client customer id via the Reply privately to author option?

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UaSSDC: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/sXsJH0Q9IC0P00d8kf0WgXR1OqfAuXqufnOg%40sfdc.net.


GAQL CLI

2020-04-28 Thread Benjamin Ryves
Not a question, so feel free to remove this if it's not useful. Today we 
open sourced our internal Google Ads query CLI, which wraps the GoogleAds 
Python library. I figured I'd share it here in case folks find it useful.

The repo's here, and you can also find it on PyPi.
https://github.com/getyourguide/gaql-cli

For safety reasons it only handles reads, and it supports outputting to 
csv/json/jsonl/proto. Would love to hear any feedback or comments anyone 
has. Have a great day!



-- 








GetYourGuide AG

Stampfenbachstrasse 48  

8006 Zürich

Switzerland



   
  
  
  








-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ac201633-18dc-452c-8f2e-8aa0a49238fb%40googlegroups.com.


Re: I have applied for a Basic Access Acount, but did not receive confirmation email

2020-04-28 Thread Google Ads API Forum Advisor Prod
Hi,

Thank you for the update. Could you provide me with your account ID that you 
applied for the basic access so that I may take a further look at this concern? 
For privacy, you can reply back to me using "reply privately to author".

Thank you,
Bryan, Google Ads API Team
ref:_00D1U1174p._5001UaSOXJ: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/Hn9aQ0Q9I85800PEWE6oN1Q6SFMI8Jtbj0BQ%40sfdc.net.


Re: Fetch report with all values of AdGroupStatus and CampaignStatus

2020-04-28 Thread Zweitze
If you're talking about AdWords API: don't assume anything.

I've been developing for AdWords API well over ten years, in those years 
the default behavior (= not including such conditions) changed at least 
seven times. In other words, if you didn't include a predicate on status, 
sometimes you got removed objects, sometimes not. Sometimes those changes 
in behavior were announced, sometimes not. Every time Google's response was 
that the new situation was the right situation.

You ask if it's mandatory to include such conditions. Of course not, but 
prepare yourself for surprises every now and then.
Personally I started to include conditions for every status field in every 
report type long time ago. I never regretted that decision.

If your question is on Google Ads API, I don't know if Google will be 
creating the same mess. If you don't like to take risks there, consider to 
include the WHERE conditions anyway. Don't forget that Google Ads API 
expects every one of those fields to be present in the select list as well.



On Tuesday, April 28, 2020 at 12:50:30 PM UTC+2, Pavel G wrote:
>
> Hi,
>
> We need to fetch report that contains the fields we need, but with all 
> statuses of AdGroupStatus and CampaignStatus fields. 
>
> In this forum I found suggestions that I need to add the following code to 
> my request:
> WHERE AdGroupStatus IN ['ENABLED','PAUSED','REMOVED'] AND CampaignStatus 
> IN ['ENABLED','PAUSED','REMOVED']
>
> But after some tests I got results with CampaignStatus == 'REMOVED'.without 
> this condition. The following *curls* return the same results with 5 rows 
> for me (their CampaignStatus is 'REMOVED'):
>
> curl --http1.1 \
> --header "Authorization : Bearer {token}" \
> --header "developerToken : {developerToken}" \
> --header "includeZeroImpressions: false" \
> --header "clientCustomerId : {clientCustomerId}" \
> --data "__rdquery=SELECT Impressions, AdNetworkType1, Conversions, 
> EffectiveFinalUrl, CampaignId, Device, CampaignName, Clicks, VideoViews, 
> Cost, Date, InteractionTypes, AdGroupStatus FROM FINAL_URL_REPORT WHERE 
> CampaignId={CampaignId} *AND *
> *CampaignStatus IN ['ENABLED','PAUSED','REMOVED']* 
> DURING+20190708,20190708&__fmt=CSV" \
> https://adwords.google.com/api/adwords/reportdownload/v201809
>
> 
> curl --http1.1 \
> --header "Authorization : Bearer {token}" \
> --header "developerToken : {developerToken}" \
> --header "includeZeroImpressions: false" \
> --header "clientCustomerId : {clientCustomerId}" \
> --data "__rdquery=SELECT Impressions, AdNetworkType1, Conversions, 
> EffectiveFinalUrl, CampaignId, Device, CampaignName, Clicks, VideoViews, 
> Cost, Date, InteractionTypes, AdGroupStatus FROM FINAL_URL_REPORT WHERE 
> CampaignId={CampaignId} DURING+20190708,20190708&__fmt=CSV" \
> https://adwords.google.com/api/adwords/reportdownload/v201809
>
> The only difference is that the second *curl* have no CampaignStatus IN [
> 'ENABLED','PAUSED','REMOVED'] condition.
> My question is it *mandatory* to have this WHERE condition if we want to 
> fetch report with all statuses of AdGroupStatus and CampaignStatus, or may 
> be it is *mandatory* for only some types of reports? Do you have any 
> information about this in you documentation?
>
> Thanks in advance.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a3b09442-7d4b-4ef8-8094-d237a7bca9f4%40googlegroups.com.


Why ad_group_ad.ad.final_urls is a list?

2020-04-28 Thread Jarek Miazga
Hi,
I'm trying to figure out why ad_group_ad.ad.final_urls is a list and 
actually when it can return more than 1 URL?

I haven't seen an option in Google Ads UI (probably missed it, not a heavy 
user of it) for setting up more than one final URL and in API responses.

Jarek

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/79f52b5b-0443-470a-8bbd-83337cd3ed5d%40googlegroups.com.


Re: Try after 30 seconds

2020-04-28 Thread Ramanajee
i replied request logs privately 

On Saturday, 25 April 2020 03:00:17 UTC+5:30, adsapiforumadvisor wrote:
>
> Hi Ramanajee,
>
> Thank you for reaching out. In order for me to better investigate, kindly 
> provide complete detailed logs of the request and response. Additionally, 
> please note that there may still be a limit of 1000 on get requests with 
> Standard Access. For more information, you may refer to this 
> 
>  guide. 
>
> Thanks,
> Danica Calusin, Google Ads API Team 
>  
>
> ref:_00D1U1174p._5001UaSI4c: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/0a2cf336-7023-4a78-9833-4cf78b916915%40googlegroups.com.


Re: Url Performance Report Mapping in UI

2020-04-28 Thread Google Ads API Forum Advisor Prod
Hi Talha,

The last message must not have came through. You can use the 
group_placement_view to get the data from that tab.

Cheers,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001UaRokB: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/PkGzQ0Q9I3XE00x9zK1puwRse7fKD4zo7rtQ%40sfdc.net.


Re: google-ads v2 documentation offline

2020-04-28 Thread Nick Russler
Had the same error, was uBlock Origin Chrome extension in my case.


Am Donnerstag, 14. November 2019 17:46:13 UTC+1 schrieb adsapiforumadvisor:
>
> Hi Francisco,
>
>  
>
> Thank you for reaching out. Everything seems to be working from our end. 
> There might've been a temporary glitch so please try clicking the link  
> again to see 
> if it works.  If you are using any proxy servers to access the 
> documentation, please deactivate the proxy.
>
>  
>
> Regards,
>
> Mitchell
>
> Google Ads API Team
>
>
> ref:_00D1U1174p._5001UJamPJ: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/98573c90-247f-44b4-aaf5-0ed90295c0bf%40googlegroups.com.


Fetch report with all values of AdGroupStatus and CampaignStatus

2020-04-28 Thread Pavel G
Hi,

We need to fetch report that contains the fields we need, but with all 
statuses of AdGroupStatus and CampaignStatus fields. 

In this forum I found suggestions that I need to add the following code to 
my request:
WHERE AdGroupStatus IN ['ENABLED','PAUSED','REMOVED'] AND CampaignStatus IN 
['ENABLED','PAUSED','REMOVED']

But after some tests I got results with CampaignStatus == 'REMOVED'.without 
this condition. The following *curls* return the same results with 5 rows 
for me (their CampaignStatus is 'REMOVED'):

curl --http1.1 \
--header "Authorization : Bearer {token}" \
--header "developerToken : {developerToken}" \
--header "includeZeroImpressions: false" \
--header "clientCustomerId : {clientCustomerId}" \
--data "__rdquery=SELECT Impressions, AdNetworkType1, Conversions, 
EffectiveFinalUrl, CampaignId, Device, CampaignName, Clicks, VideoViews, 
Cost, Date, InteractionTypes, AdGroupStatus FROM FINAL_URL_REPORT WHERE 
CampaignId={CampaignId} *AND *
*CampaignStatus IN ['ENABLED','PAUSED','REMOVED']* 
DURING+20190708,20190708&__fmt=CSV" \
https://adwords.google.com/api/adwords/reportdownload/v201809


curl --http1.1 \
--header "Authorization : Bearer {token}" \
--header "developerToken : {developerToken}" \
--header "includeZeroImpressions: false" \
--header "clientCustomerId : {clientCustomerId}" \
--data "__rdquery=SELECT Impressions, AdNetworkType1, Conversions, 
EffectiveFinalUrl, CampaignId, Device, CampaignName, Clicks, VideoViews, 
Cost, Date, InteractionTypes, AdGroupStatus FROM FINAL_URL_REPORT WHERE 
CampaignId={CampaignId} DURING+20190708,20190708&__fmt=CSV" \
https://adwords.google.com/api/adwords/reportdownload/v201809

The only difference is that the second *curl* have no CampaignStatus IN [
'ENABLED','PAUSED','REMOVED'] condition.
My question is it *mandatory* to have this WHERE condition if we want to 
fetch report with all statuses of AdGroupStatus and CampaignStatus, or may 
be it is *mandatory* for only some types of reports? Do you have any 
information about this in you documentation?

Thanks in advance.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/93438976-56d9-4c14-80fb-cbcfde93d28b%40googlegroups.com.


Re: Pulling Data For Removed Campaigns?

2020-04-28 Thread Pavel Grivachev
Hi,

Is it mandatory to use WHERE CampaignStatus 

 = 
'REMOVED'  now for this purpose? I just checked without this WHERE 
statement and my curl request returned me data with Campaign state == 
REMOVED. Also do you have any documentation about this?

Here is my curl:

curl --http1.1 \
--header "Authorization : Bearer {token}" \
--header "developerToken : {developerToken}" \
--header "includeZeroImpressions: false" \
--header "clientCustomerId : {clientCustomerId}" \
--data "__rdquery=SELECT Impressions, AdNetworkType1, Conversions, 
EffectiveFinalUrl, CampaignId, Device, CampaignName, Clicks, VideoViews, 
Cost, Date, InteractionTypes, AdGroupStatus FROM FINAL_URL_REPORT WHERE 
CampaignId={CampaignId} DURING+20190708,20190708&__fmt=CSV" \
https://adwords.google.com/api/adwords/reportdownload/v201809





On Tuesday, October 8, 2019 at 7:19:05 PM UTC+3, adsapiforumadvisor wrote:
>
> Hi Michael,
>
> Thank you for reaching out. Yes, it is possible to pull data from REMOVED 
> campaigns using reports 
> . In you 
> AWQL 
> statement, 
> use WHERE CampaignStatus 
> 
>  
> = 'REMOVED'  to get data from removed campaigns.
>
> Regards,
> Anthony
> Google Ads API Team
>
>
> ref:_00D1U1174p._5001UKMZVv: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/23ad88b3-b245-4d8b-b04b-7cf3a646dd8b%40googlegroups.com.


Re: I have applied for a Basic Access Acount, but did not receive confirmation email

2020-04-28 Thread English Summary
Hi,

Thanks for the reply. I have been waiting since last 3 days and have not 
heard from the API Compliance Team. 

On Monday, 27 April 2020 19:54:26 UTC+5:30, adsapiforumadvisor wrote:
>
> Hi,
>
> Thank you for reaching out to us. I see you have a question on when you 
> should receive a reply from the API Compliance Team. It should take about 
> two business days after you submit your application for the API Compliance 
> Team to reach back out to you. Let me know if you have further questions.
>
> Thank you,
> Bryan, Google Ads API Team
>
> ref:_00D1U1174p._5001UaSOXJ: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/6b0d2df5-210e-41fe-ae99-0309ad911a16%40googlegroups.com.


Using userID for upload users into customer match audience.

2020-04-28 Thread Павел Хазов
Hi all.

I need upload user list into customer match audience using UserID, but in 
the documentation, I saw this note

*Note:* Uploading members based on userId 
> 
>  is 
> only available to whitelisted US customers.


Is this relevant information for now? 

Thanks a lot!


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/2e0f2098-fdde-4962-868d-af9fbcf41b7b%40googlegroups.com.


Re: Google Ads API JSON REST POST Request - MutateMembers

2020-04-28 Thread Gregory Gan
Hi Mitchell,

Just a follow up on the previous email, I'm trying to upload 1000+ members 
to my audience list with the SOAP:XML format: 


http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;>

https://adwords.google.com/api/adwords/rm/v201809; 
soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next; 
soapenv:mustUnderstand="0">
xxx-xxx-
R
example.com:Test:xxx
false
false



https://adwords.google.com/api/adwords/rm/v201809;>

https://adwords.google.com/api/adwords/cm/v201809;>ADD

xx


d480ad3fc4b40ae4361e4b26e223a0a5c0f04e3baf92a600ff42690d5576d136

4dc2b26583b308da70acbee670b5a5946dc37ca38ee71f9be023a0b093fa5b2b


0d2c690e7dd5f94780383e9dfa1f4def044319104ad16ab15e45eeb2a8dfc81b

b55d31756452520fc568e5981fdbb68185c8f9d38c9f91c15fe10afd2499f5c6
au
 4006 


779a43be8a05b79f0212b5aa6694f6e9f81de948b82cd5f9e2e2cbd14aa2f016

180d55631635a69f13578de3306e4a68b81804364c5a301cadb227831b7a054e


01621148306fc8fb7c2b95eeb5c37e375f90db53cf8313ea87c9c34c05b7e0e5

2a99130a5aa3403ae8b3723f4d66b190d3c4e7c4a202f6498e72a25d36f4
au
 4006 








Also, my audience list has the membership status as "OPEN" and when I put 
the request in postman, its getting a 200 status back with the last upload 
date changing. However, the size uploaded doesn't seem to change at all. 
Still saying there's 0 members in my audience list. Not sure if its because 
I'm on a test account or something else. 

Cheers,
Greg 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3d6c81c0-4db4-4193-ad69-2409d2b90c6d%40googlegroups.com.