Re: AWQL query Python List Variable

2020-09-02 Thread Green Leaf
Thanks for your help Mat.

I'm using the AdWords API Python library so looking at your first example.

I tried multiple ways (and went searching on Google again) but no luck.

This is what I thought might be the closest. Any thoughts would be much 
appreciated.

list_of_keywords_counted = ['keyword 1', 'keyword 2']
list_of_keywords = ', '.join(str(e) for e in list_of_keywords_counted)
.
.
.
 AND KeywordTextMatchingQuery IN [{}].format(" + list_of_keywords + ")

On Thursday, September 3, 2020 at 3:17:26 AM UTC+12 Mat wrote:

> Hi Green Leaf,
>
> some alternative to my solution you've linked would be to convert the list 
> into a string using "join()" and/or insert that string into the query using 
> ".format().
>
>
> keyword_list = ["keyword1", "keyword2", "keyword3"]
> *keyword_list_as_string* = ', '.join(str(e) for e in keyword_list)
>
> #This should work with the AdWords API Python library:
> query = ('SELECT Id, Criteria, AdGroupName FROM 
> KEYWORDS_PERFORMANCE_REPORT '
> 'WHERE somecondition '
> 'AND KeywordTextMatchingQuery IN [*{}*]'.format(*keyword_list_as_string*)
>  ) 
>
> #And this is a Python example that does work with the Google Ads API 
> Python library:
>shared_set_ids = [1234, 5678, 2345]
> *shared_set_ids_as_string* = ', '.join(str(e) for e in shared_set_ids)
> query = ('SELECT '
> 'shared_criterion.criterion_id, '   
> 'shared_criterion.keyword.match_type, '
>  
> 'shared_criterion.keyword.text, '
> 'shared_criterion.type, ' 
> 'shared_set.id '
> 'FROM shared_criterion '
> 'WHERE shared_set.id IN (*{}*) '
> 'AND shared_set.status = ENABLED '
> 'AND shared_set.type = NEGATIVE_KEYWORDS'.format(
> *shared_set_ids_as_string*)
> )
>
>
> Regards 
> Mat
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a4d8e9e4-8f2d-45de-ad90-c74ec4f239d0n%40googlegroups.com.


Re: Billing problem when trying to activate google ads api

2020-09-02 Thread Felipe César
I didn't receive any further contact from Google Team. But the problem was
solved today. I just tried to do the same process again and it worked.
Maybe google team solved the bug that was blocking me :)

On Fri, Aug 28, 2020 at 10:47 AM Felipe César  wrote:

> Thanks. I'm blocked because of this issue :(.
>
> On Thu, Aug 27, 2020 at 11:56 AM Google Ads API Forum Advisor Prod <
> adsapiforumadvi...@gmail.com> wrote:
>
>> Hi Felipe,
>>
>> I'll take a closer look at this internally with my team and get back to
>> you as soon as possible.
>>
>> Thank you,
>>
>> [image: Google Logo]
>> Bryan Li
>> Google Ads API Team
>>
>>
>> ref:_00D1U1174p._5004Q23uoE6:ref
>>
>
>
> --
> Felipe César
> felipecesar.io
>


-- 
Felipe César
felipecesar.io

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/CAMKK65Zr6b2WjwswowpUa%3D6HbSi0gKQ%2BRKEnJ9cQvpaO%2BEhrQQ%40mail.gmail.com.


RE: TargetingIdeaService returns no Searchvolume

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hi Onno,

Thanks for reaching out. Can you please provide your CID along with the 
complete detailed logs of the request and response so that I can investigate 
why this is occurring? Please Reply privately to author when providing this 
information.

Regards,

Danica
Google Ads API Team
ref:_00D1U1174p._5004Q23wfL7: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/abQm50QG292500Vipz6SscTKKtD7d0ADJ7zA%40sfdc.net.


Re: Upload more than 100 User Identifiers at One TIme

2020-09-02 Thread Jonathan Kressaty
Great thank you! 

Two follow-up questions:

   - Are there limits in this situation as well, and where I might find 
   those?
   - Is it a best practice to maintain a "Job" for a UserList we'll update 
   on a regular basis (say Daily) or best to create a new "Job" each time we 
   want to do an upload?


Thanks again!

On Wednesday, September 2, 2020 at 3:19:46 PM UTC-7 adsapiforumadvisor 
wrote:

> Hi Jonathan,
>
> Thank you for reaching out. UserDataService 
> 
>  
> is designed for uploading small batches of Customer Match 
>  data concurrently. 
> The limit of the user identifiers could not be altered for this service. 
> However, if you have a large amount of data to upload, you should consider 
> using the  OfflineUserDataJobService 
> 
>  
> which supports asynchronous upload of Customer Match 
>  data and store 
> sales (direct upload) 
>  data. You could 
> refer to this code example 
> 
>  
> on how to implement it with OfflineUserDataJobService 
> 
> .
>
> Thanks and regards,
> Xiaoming, Google Ads API Team
>
>
>
>
> [image: Google Logo] 
> Xiaoming 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q23wicl: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/645df7a4-1bad-4b08-8746-4b3f0d573e41n%40googlegroups.com.


RE: Upload more than 100 User Identifiers at One TIme

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hi Jonathan,

Thank you for reaching out. UserDataService is designed for uploading small 
batches of Customer Match data concurrently. The limit of the user identifiers 
could not be altered for this service. However, if you have a large amount of 
data to upload, you should consider using the OfflineUserDataJobService which 
supports asynchronous upload of Customer Match data and store sales (direct 
upload) data. You could refer to this code example on how to implement it with 
OfflineUserDataJobService.

Thanks and regards,
Xiaoming, Google Ads API Team





Xiaoming
Google Ads API Team
ref:_00D1U1174p._5004Q23wicl: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/m5y390QG1XYU00Z5y28GGxRcKQccQKvC-oow%40sfdc.net.


Re: REMOVED user_list is not returned when queried

2020-09-02 Thread vla...@gmail.com
To add, I am not sure the membership_status is relevant here. In the UI I 
can have enabled audiences with both Open and Closed membership status. The 
same goes for removed audiences - some have membership status as Open and 
some as Closed.

On Wednesday, 2 September 2020 at 13:32:45 UTC-7 vla...@gmail.com wrote:

> Sorry, still nothing. I included user_list.membership_status='CLOSED' and 
> it returned nothing. Also tried  user_list.membership_status IN ('OPEN', 
> 'CLOSED' ), same result.
>
> On Wednesday, 2 September 2020 at 13:16:14 UTC-7 adsapiforumadvisor wrote:
>
>> Hi,
>>
>> Please add a condition for the field user_list.membership_status 
>> 
>> . 
>>
>>
>> Regards,
>> Anthony
>> Google Ads API Team
>>
>> [image: Google Logo] 
>> Anthony 
>> Google Ads API Team 
>>
>>  
>>
>> ref:_00D1U1174p._5004Q23wUwz: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/ac9548bc-6901-4ef4-9794-e3a903d8a3a0n%40googlegroups.com.


Re: REMOVED user_list is not returned when queried

2020-09-02 Thread vla...@gmail.com
Sorry, still nothing. I included user_list.membership_status='CLOSED' and 
it returned nothing. Also tried  user_list.membership_status IN ('OPEN', 
'CLOSED' ), same result.

On Wednesday, 2 September 2020 at 13:16:14 UTC-7 adsapiforumadvisor wrote:

> Hi,
>
> Please add a condition for the field user_list.membership_status 
> 
> . 
>
>
> Regards,
> Anthony
> Google Ads API Team
>
> [image: Google Logo] 
> Anthony 
> Google Ads API Team 
>
>  
>
> ref:_00D1U1174p._5004Q23wUwz: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/89f649e5-f63b-4358-818e-f17050b7675fn%40googlegroups.com.


RE: "Changes to the search terms report"

2020-09-02 Thread Google Ads API Forum Advisor Prod
Greetings!

That's very observant of you and an excellent question. This change affects all 
surfaces equally including the UI, Google Ads API, AdWords API, Google Ads 
scripts, and Editor.

Best,
Nadine Wang, Google Ads API Team
ref:_00D1U1174p._5004Q23wfXE: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/JSn-X0QG1SYG006Taspy_WQkyrcNuiot7CCQ%40sfdc.net.


Re: REMOVED user_list is not returned when queried

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

Please add a condition for the field user_list.membership_status.

Regards,
Anthony
Google Ads API Team

Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q23wUwz: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/amACI0QG1SA400efeSdCFXTWeHakH4n7KDGQ%40sfdc.net.


Re: OfflineConversionError.INVALID_CONVERSION_TYPE error when submition conversion, while UploadConversion was created much earlier

2020-09-02 Thread don....@gmail.com
Hello Danica, thank you for quick reply! We are sure that click happened on 
8/30 (EDT time)
we track time of the click but also pull data from 
https://developers.google.com/adwords/api/docs/appendix/reports/click-performance-report
I'm attaching information about click from the API call example I have 
provided.
According to report it happened on 8/30 (EDT time)
exact time 2020-08-31 03:41:29.000 UTC
so according to the docs it should be accepted by API without an issue?

On Wednesday, September 2, 2020 at 10:47:04 PM UTC+3 adsapiforumadvisor 
wrote:

> Hello,
>
> Thank you for reaching out! You can take a look here for the common causes 
> of the INVALID_CONVERSION_TYPE 
> 
>  error. 
> I can see in your account that the "Wicked Existing Lead Re Optin" 
> conversion action was indeed created on August 25th and that there were no 
> name changes applied. It is also worth noting that this conversion action 
> is not enabled. I also understand that you tried to upload your clicks on 
> August 31st, but can you confirm if the click has been generated before the 
> UploadConversion was created? 
>
> Regards,
> [image: Google Logo] 
> Danica 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q23wbBI: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/706468f3-1e71-4b6f-b694-efb16c3705adn%40googlegroups.com.
CjwKCAjwnK36BRBVEiwAsMT8WDHmx0hLyDA2KrfwmmTymzf0FTitf3PoomyZ8h99bQr-H2MyQU67tRoC4woQAvD_BwE
DataDate;LoadDate;Client_CustomerID;CampaignId;CampaignName;AdGroupId;AdGroupName;AdNetworkType1;AdNetworkType2;ClickType;CreativeId;CriteriaId;CriteriaParameters;GclId;AdFormat;Clicks
2020-08-30 00:00:00.000;2020-08-31 06:55:34.000;6893440343;10809822677;ch:youtube|pn:mmtwebinar|ot:leadgen|gu:charlie|ob:remarketing|cr:jump|c1:mixed|c2:08.10.20|c3:desktop|c4:;114904726508;Google Optimized List;YouTube Videos;YouTube Videos;Engagement;455532329737;510001;0%-50%;CjwKCAjwnK36BRBVEiwAsMT8WDHmx0hLyDA2KrfwmmTymzf0FTitf3PoomyZ8h99bQr-H2MyQU67tRoC4woQAvD_BwE;unknown;1

RE: Labels on Ad level in the Google Ads API vs Adwords

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hi Maria,

Could you please reply privately to author both your AdWords and Google Ads API 
reports and let me know which rows are showing inconsistencies?

Thanks,
Anthony
Google Ads API Team

Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q23wYlX: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/UbGaZ0QG1QAR00L8i4ecvWQMeV_tD6VuBnkA%40sfdc.net.


RE: Access for external developers

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hi Billy,

Thanks for reaching out. You can login in manager account then go to Tools & 
Settings -> SETUP ->API Center then apply for access. Please refer to this 
guide for access.

If you already submitted an application form and did not hear a response from 
them, you could raise your concerns to the Compliance Team by filling out this 
form.

Thanks,

Nirmitabahen Gaurav Patel
Google Ads API Team
ref:_00D1U1174p._5004Q23wXLC: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/P2rua0QG1Q2A00MT-rXM3wQYe8Mkh_LURcFA%40sfdc.net.


Re: Pull metrics for history campaign

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hi Ajay,

Thanks for reaching out. With regards to your concern, you can provide details 
via email the api alias :googleadsapi-supp...@google.com.

Thanks,

Nirmitabahen Gaurav Patel
Google Ads API Team
ref:_00D1U1174p._5004Q23wEvv: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/Xy-E30QG1PSX00rhETASZFScG2nFRo_JDHhw%40sfdc.net.


RE: RATE_EXCEEDED

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hi Lucie,

Thanks for reaching out. With regards to your concern, you can apply for 
standard access, but if you need any help I would recommend you please reach 
out to the API Compliance Team by filling out this form, as they handle all API 
access applications and would be better equipped to assist you with your 
concern. The RATE_EXCEEDED error indicates that too many requests were made to 
the API at the same time. If you are expecting to use more than 10,000 
operations in a day you can apply for standard access as mentioned here.

Thanks,

Nirmitabahen Gaurav Patel
Google Ads API Team
ref:_00D1U1174p._5004Q23waIr: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/JWYSz0QG1PH800EO02e7RcQWKmMJeJ3bgILw%40sfdc.net.


RE: Empty data in Audience Performance Report with Test Account

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hi Mais,

Thanks for reaching out. With regard to your concern, can you please share the 
complete report definition along with customer id and please reply privately to 
author options while sharing the details.

Thanks,

Nirmitabahen Gaurav Patel
Google Ads API Team
ref:_00D1U1174p._5004Q23wZXR: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/znlpB0QG1PDH00DbcL_fI6TXW2ezT9l_XaWA%40sfdc.net.


RE: Pausing Smart Campaigns

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hi Earn,

Thanks for reaching out. Here is an example on how to pause a campaign.  Let me 
know if this is what you're looking for. If not can you please provide a 
screenshot of UI.

Thanks,

Nirmitabahen Gaurav Patel
Google Ads API Team
ref:_00D1U1174p._5004Q23wYix: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/qbzlb0QG1P72005QzP5uLeTn2cF0cflJaEhg%40sfdc.net.


Upload more than 100 User Identifiers at One TIme

2020-09-02 Thread Jonathan Kressaty
I'm using the UserDataService to upload first party user IDs to a custom 
User List. Account is whitelisted, everything works great. However, it 
appears that there's a limit of 100 user identifiers allowed to be uploaded 
at one time.

I've tried adding multiple "create" operations, each with < 100 userIds, 
and that also fails.

My clients have tens or hundreds of thousands of individuals in audiences 
we'd like to upload, and being limited to 100 is going to make this quite 
the process to accomplish.

Is there any way to upload more than 100 at a time? Perhaps I'm missing 
something obvious?

Thanks for any thoughts!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/665f-4565-4898-ada1-c368110904ben%40googlegroups.com.


RE: How to get all campaign costs?

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hello,

Here is a list of all supported report formats. You can also stream your data 
results. Here is an example on how to do so using Java.

This is details on how to report using a test account.

Cheers,
Anthony
Google Ads API Team

Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q23wYXH: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/E-u9i0QG1KKA00icb6kUNTTrS5WkpO58DiLg%40sfdc.net.


Re: REMOVED user_list is not returned when queried

2020-09-02 Thread vla...@gmail.com
I tried `user_list.account_user_list_status IN ('ENABLED','DISABLED')`, 
that didn't help.

On Wednesday, 2 September 2020 at 10:03:02 UTC-7 vla...@gmail.com wrote:

> Great, what is the condition?
>
> On Wednesday, 2 September 2020 at 10:01:13 UTC-7 adsapiforumadvisor wrote:
>
>> Hello,
>>
>> Removed entities do not return in reports by default. You will need to 
>> add a condition to include them explicitly. 
>>
>> Regards,
>> Anthony
>> Google Ads API Team
>>
>> [image: Google Logo] 
>> Anthony 
>> Google Ads API Team 
>>   
>>
>> ref:_00D1U1174p._5004Q23wUwz: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/5a925801-0629-48bb-88a2-f1c7d94c9382n%40googlegroups.com.


Re: REMOVED user_list is not returned when queried

2020-09-02 Thread vla...@gmail.com
Great, what is the condition?

On Wednesday, 2 September 2020 at 10:01:13 UTC-7 adsapiforumadvisor wrote:

> Hello,
>
> Removed entities do not return in reports by default. You will need to add 
> a condition to include them explicitly. 
>
> Regards,
> Anthony
> Google Ads API Team
>
> [image: Google Logo] 
> Anthony 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q23wUwz: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/bbdd2dfd-4ca8-4426-a7b6-6d804bc90107n%40googlegroups.com.


RE: REMOVED user_list is not returned when queried

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hello,

Removed entities do not return in reports by default. You will need to add a 
condition to include them explicitly.

Regards,
Anthony
Google Ads API Team

Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q23wUwz: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/GfhIb0QG1J9500QcrOqOaeQFqR_5NAAK9U4A%40sfdc.net.


Re: Do upcoming changes to Search Term UI report impact the API report

2020-09-02 Thread XCI
Xiaoming,

Is it the same case for Google Ads API?
On Wednesday, September 2, 2020 at 12:48:32 PM UTC-4 adsapiforumadvisor 
wrote:

> Hi Jessica,
>
> Thank you for reaching out. As far as I know, there isn’t any updates on 
> the Search Query Performance Report 
> 
>  
> in the Adwords API. However, please keep an eye on our blog 
>  for 
> updates and announcements.
>
> Thanks and regards,
> Xiaoming, Google Ads API Team
>
>
>
>
>
> [image: Google Logo] 
> Xiaoming 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q23wZb4: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/4e175857-8406-46d3-b353-d71f5c2b7280n%40googlegroups.com.


RE: Do upcoming changes to Search Term UI report impact the API report

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hi Jessica,

Thank you for reaching out. As far as I know, there isn’t any updates on the 
Search Query Performance Report in the Adwords API. However, please keep an eye 
on our blog for updates and announcements.

Thanks and regards,
Xiaoming, Google Ads API Team






Xiaoming
Google Ads API Team
ref:_00D1U1174p._5004Q23wZb4: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/9MXfZ0QG1IO100KjnWC-BrTHO81B7YuM02zw%40sfdc.net.


RE: Can't get the fresh token

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

Thank you for reaching out to us. I see that you're having issues getting your 
refresh token. Are you using Google Ads API or AdWords API? Could you provide 
us with your full request and response log that shows the error you're 
encountering so that I may further investigate? You can use "Reply privately to 
author" for privacy when providing us with the logs.

Thank you,

Bryan Li
Google Ads API Team
ref:_00D1U1174p._5004Q23waG7: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/8AGKE0QG1I0U00FqjtgGaGS0avoHF35dwkhg%40sfdc.net.


"Changes to the search terms report"

2020-09-02 Thread XCI
Hi everyone,

We saw this notification today and we're wondering if the AdWords and 
Google Ads API will be affected by this change too:

[image: image (1).png]

Will we still be able to get the full data through scripts? 




-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/52498d17-7529-4c54-9905-063df2937338n%40googlegroups.com.


Re: googleads.yaml error

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hi J F,

Thank you for the update. Are you encountering issues? If so, could you 
elaborate further so that I may assist you?

Thank you,

Bryan Li
Google Ads API Team
ref:_00D1U1174p._5004Q21B6H6: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/X7Zrl0QG1GKQ00h4xQeBE2SjmLYeYupKoyYQ%40sfdc.net.


TargetingIdeaService returns no Searchvolume

2020-09-02 Thread Jan-Onno Maertens
Hey,

we experienced, that some keywords don't return any Searchvolume anymore 
and the historical data was deleted as well.
We experienced this behavior since end of may, with the keyword 
"smartphone" for example.
Do you have any idea, why this is happening?

Greetings,
Onno

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/93201eaa-2bb4-4496-8d32-fd1914b56635n%40googlegroups.com.


RE: AuthorizationError.USER_PERMISSION_DENIED Error

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hi Muthukumar,

Thank you for reaching out to us. I see you're encountering a 
USER_PERMISSION_DENIED error. Could you provide us with the full request and 
response logs for where you encounter this issue so that I may further 
investigate? You can reply using "reply privately to author" for privacy.

Thank you,

Bryan Li
Google Ads API Team
ref:_00D1U1174p._5004Q23wVN6: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/YFh0h0QG1GGJ00YpI1lYVuSEWTIqroHdEiEA%40sfdc.net.


Re: Integration of Google Ad Words API using Dell Boomi and Postman

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hi Arun,

Unfortunately, my team can only provide support via email so we won't be able 
to schedule a call. When you try to sign in to the page you mentioned, are you 
getting any errors? Can you confirm if you are logging in with a G Suite 
account as mentioned in this support article?

Regards,

Danica
Google Ads API Team
ref:_00D1U1174p._5004Q23JOuC: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/G5LuF0QG1FQS00WmK1dmcHQdSYMLqmKU3mqA%40sfdc.net.


Re: Bulk sending operations via mutate and checking current api connections

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hi Darren,

Bulk uploads are done through the UI so it won't cost you any API operations.

Cheers,
Anthony
Google Ads API Team

Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q23w2QW: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/moZqd0QG1FE900pdq3Vh0yQgeQ8qr1POqyjQ%40sfdc.net.


Responsive Search Ad Performance Column via API

2020-09-02 Thread Shannon
Is there an API report or attribute call that can be made to get the status 
of the "Performance" column for Responsive ads (Good, Poor, Learning, etc)?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f8014b50-c853-4af5-bbbf-88caaa1223a3n%40googlegroups.com.


Re: AWQL query Python List Variable

2020-09-02 Thread Mat
...note: the KeywordTextMatchingQuery is not available in the 
KEYWORDS_PERFORMANCE_REPORT 
as my example suggests. Use the SEARCH_QUERY_PERFORMANCE_REPORT instead.

Am Mittwoch, 2. September 2020 17:17:26 UTC+2 schrieb Mat:
>
> Hi Green Leaf,
>
> some alternative to my solution you've linked would be to convert the list 
> into a string using "join()" and/or insert that string into the query using 
> ".format().
>
>
> keyword_list = ["keyword1", "keyword2", "keyword3"]
> *keyword_list_as_string* = ', '.join(str(e) for e in keyword_list)
>
> #This should work with the AdWords API Python library:
> query = ('SELECT Id, Criteria, AdGroupName FROM 
> KEYWORDS_PERFORMANCE_REPORT '
> 'WHERE somecondition '
> 'AND KeywordTextMatchingQuery IN [*{}*]'.format(*keyword_list_as_string*)
>  ) 
>
> #And this is a Python example that does work with the Google Ads API 
> Python library:
>shared_set_ids = [1234, 5678, 2345]
> *shared_set_ids_as_string* = ', '.join(str(e) for e in shared_set_ids)
> query = ('SELECT '
> 'shared_criterion.criterion_id, '   
> 'shared_criterion.keyword.match_type, '
>  
> 'shared_criterion.keyword.text, '
> 'shared_criterion.type, ' 
> 'shared_set.id '
> 'FROM shared_criterion '
> 'WHERE shared_set.id IN (*{}*) '
> 'AND shared_set.status = ENABLED '
> 'AND shared_set.type = NEGATIVE_KEYWORDS'.format(
> *shared_set_ids_as_string*)
> )
>
>
> Regards 
> Mat
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/70b5ab63-05b2-4cd0-b894-b677b2f367e3o%40googlegroups.com.


Re: AWQL query Python List Variable

2020-09-02 Thread Mat
Hi Green Leaf,

some alternative to my solution you've linked would be to convert the list 
into a string using "join()" and/or insert that string into the query using 
".format().


keyword_list = ["keyword1", "keyword2", "keyword3"]
*keyword_list_as_string* = ', '.join(str(e) for e in keyword_list)

#This should work with the AdWords API Python library:
query = ('SELECT Id, Criteria, AdGroupName FROM KEYWORDS_PERFORMANCE_REPORT 
'
'WHERE somecondition '
'AND KeywordTextMatchingQuery IN [*{}*]'.format(*keyword_list_as_string*)
 ) 

#And this is a Python example that does work with the Google Ads API Python 
library:
   shared_set_ids = [1234, 5678, 2345]
*shared_set_ids_as_string* = ', '.join(str(e) for e in shared_set_ids)
query = ('SELECT '
'shared_criterion.criterion_id, '   
'shared_criterion.keyword.match_type, '
 
'shared_criterion.keyword.text, '
'shared_criterion.type, ' 
'shared_set.id '
'FROM shared_criterion '
'WHERE shared_set.id IN (*{}*) '
'AND shared_set.status = ENABLED '
'AND shared_set.type = NEGATIVE_KEYWORDS'.format(
*shared_set_ids_as_string*)
)


Regards 
Mat

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/e8112e06-4915-400d-b605-5779f5e12e1eo%40googlegroups.com.


Re: Create a Video (YouTube) campaign

2020-09-02 Thread Google Ads API Forum Advisor Prod
Hi Sunil,

I've just created the request. In the meantime, please keep an eye on our blog 
for further updates on this request. Let me know if you have further questions.

Thank you,

Bryan Li
Google Ads API Team
ref:_00D1U1174p._5004Q23wITX: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/Jif1f0QG1EUW00LbalcPPMR26fHGexDarmfg%40sfdc.net.


OfflineConversionError.INVALID_CONVERSION_TYPE error when submition conversion, while UploadConversion was created much earlier

2020-09-02 Thread don....@gmail.com
Hello Google team! We are having problems while submitting offline 
conversions via API into one of the Adwords accounts of our client

Almost all conversions submissions return error as in example below while 
UploadConversion 
was created 8/25 and we submit conversion from 8/31 and later

Could you please suggest what are we possibly doing wrong, it works for 
other adwords account of the same client with the same worker logic.

Appreciate your help in advance!

Please see example below

*curl --location --request POST 
'https://adwords.google.com/api/adwords/cm/v201809/OfflineConversionFeedService?wsdl'
 
\*
*--header 'Authorization: Bearer REDACTED' \*
*--header 'Content-Type: application/xml' \*
*--data-raw '*
*http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="https://adwords.google.com/api/adwords/cm/v201809";>6893440343REDACTEDunknown
 
(AwApi-PHP, googleads-php-lib/40.0.0, 
PHP/7.1.25-1+ubuntu16.04.1+deb.sury.org+1)falsefalseADDCjwKCAjwnK36BRBVEiwAsMT8WDHmx0hLyDA2KrfwmmTymzf0FTitf3PoomyZ8h99bQr-H2MyQU67tRoC4woQAvD_BwEWicked
 
Existing Lead Re Optin20200831 
034202 
UTC6USD*

*'*And actual response:

*http://schemas.xmlsoap.org/soap/envelope/";>*
* *
* https://adwords.google.com/api/adwords/cm/v201809";>*
* 0005ae53f6397d000a37c50584031339*
* OfflineConversionFeedService*
* mutate*
* 1*
* 254*
* *
* *
* *
* *
* soap:Client*
* [OfflineConversionError.INVALID_CONVERSION_TYPE @ 
operations[0].operand]*
* *
* https://adwords.google.com/api/adwords/cm/v201809";>*
* [OfflineConversionError.INVALID_CONVERSION_TYPE @ 
operations[0].operand]*
* ApiException*
* http://www.w3.org/2001/XMLSchema-instance"; 
xsi:type="OfflineConversionError">*
* operations[0].operand*
* *
* operations*
* 0*
* *
* *
* operand*
* *
* *
* OfflineConversionError.INVALID_CONVERSION_TYPE*
* OfflineConversionError*
* INVALID_CONVERSION_TYPE*
* *
* *
* *
* *
* *
**

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/846407b6-3018-411d-89e1-1bda370f9c66n%40googlegroups.com.


EntityNotFound.INVALID_ID. Associate an uploaded extension with campaigns.

2020-09-02 Thread anatolii_z
I try to associate an uploaded extension with a campaign and each time get 
this error: "EntityNotFound.INVALID_ID". But for other campaigns, 
everything went well. The extension exists in AdWords account and I can get 
it through the API and it has the status 'ENABLED'. Could you give me some 
advice on how to resolve this issue?

http://schemas.xmlsoap.org/soap/envelope/";>https://adwords.google.com/api/adwords/cm/v201809";>0005ae52b83f70a402ab42189804879cCampaignExtensionSettingServicemutate7285soap:Client[EntityNotFound.INVALID_ID
 
@ operations[0].operand.extensionSetting.extensions[0].feedItemId; 
trigger:'FeedItemId{id=135102760325}', EntityNotFound.INVALID_ID @ 
operations[0].operand.extensionSetting.extensions[1].feedItemId; 
trigger:'FeedItemId{id=135102760328}', EntityNotFound.INVALID_ID @ 
operations[0].operand.extensionSetting.extensions[2].feedItemId; 
trigger:'FeedItemId{id=135102760331}', EntityNotFound.INVALID_ID @ 
operations[0].operand.extensionSetting.extensions[3].feedItemId; 
trigger:'FeedItemId{id=135102760334}', EntityNotFound.INVALID_ID @ 
operations[0].operand.extensionSetting.extensions[4].feedItemId; 
trigger:'FeedItemId{id=135102760337}', EntityNotFound.INVALID_ID @ 
operations[0].operand.extensionSetting.extensions[5].feedItemId; 
trigger:'FeedItemId{id=135102760340}']https://adwords.google.com/api/adwords/cm/v201809";>[EntityNotFound.INVALID_ID
 
@ operations[0].operand.extensionSetting.extensions[0].feedItemId; 
trigger:'FeedItemId{id=135102760325}', EntityNotFound.INVALID_ID @ 
operations[0].operand.extensionSetting.extensions[1].feedItemId; 
trigger:'FeedItemId{id=135102760328}', EntityNotFound.INVALID_ID @ 
operations[0].operand.extensionSetting.extensions[2].feedItemId; 
trigger:'FeedItemId{id=135102760331}', EntityNotFound.INVALID_ID @ 
operations[0].operand.extensionSetting.extensions[3].feedItemId; 
trigger:'FeedItemId{id=135102760334}', EntityNotFound.INVALID_ID @ 
operations[0].operand.extensionSetting.extensions[4].feedItemId; 
trigger:'FeedItemId{id=135102760337}', EntityNotFound.INVALID_ID @ 
operations[0].operand.extensionSetting.extensions[5].feedItemId; 
trigger:'FeedItemId{id=135102760340}']ApiExceptionhttp://www.w3.org/2001/XMLSchema-instance"; 
xsi:type="EntityNotFound">operations[0].operand.extensionSetting.extensions[0].feedItemIdoperations0operandextensionSettingextensions0feedItemIdFeedItemId{id=135102760325}EntityNotFound.INVALID_IDEntityNotFoundINVALID_IDhttp://www.w3.org/2001/XMLSchema-instance"; 
xsi:type="EntityNotFound">operations[0].operand.extensionSetting.extensions[1].feedItemIdoperations0operandextensionSettingextensions1feedItemIdFeedItemId{id=135102760328}EntityNotFound.INVALID_IDEntityNotFoundINVALID_IDhttp://www.w3.org/2001/XMLSchema-instance"; 
xsi:type="EntityNotFound">operations[0].operand.extensionSetting.extensions[2].feedItemIdoperations0operandextensionSettingextensions2feedItemIdFeedItemId{id=135102760331}EntityNotFound.INVALID_IDEntityNotFoundINVALID_IDhttp://www.w3.org/2001/XMLSchema-instance"; 
xsi:type="EntityNotFound">operations[0].operand.extensionSetting.extensions[3].feedItemIdoperations0operandextensionSettingextensions3feedItemIdFeedItemId{id=135102760334}EntityNotFound.INVALID_IDEntityNotFoundINVALID_IDhttp://www.w3.org/2001/XMLSchema-instance"; 
xsi:type="EntityNotFound">operations[0].operand.extensionSetting.extensions[4].feedItemIdoperations0operandextensionSettingextensions4feedItemIdFeedItemId{id=135102760337}EntityNotFound.INVALID_IDEntityNotFoundINVALID_IDhttp://www.w3.org/2001/XMLSchema-instance"; 
xsi:type="EntityNotFound">operations[0].operand.extensionSetting.extensions[5].feedItemIdoperations0operandextensionSettingextensions5feedItemIdFeedItemId{id=135102760340}EntityNotFound.INVALID_IDEntityNotFoundINVALID_ID

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/70e9a8d0-efb5-43e5-9f6b-8a8107ab6645n%40googlegroups.com.


Re: googleads.yaml error

2020-09-02 Thread 'J F' via AdWords API and Google Ads API Forum
I got this error message..
GoogleAdsValueError: Given yaml file, ~googleads.yaml , could not find some 
keys. The "adwords" configuration is missing

..because the "googleads.yaml" configuration file requires a section 
"adwords", unlike the classic  "adwords.yaml" file for the AdWords API. An 
example for a valid format can be found here 
https://github.com/googleads/googleads-python-lib/blob/master/googleads.yaml

Hope that helps someone

-Jochen
https://twitter.com/jofr

On Monday, July 6, 2020 at 8:32:47 PM UTC+2 adsapiforumadvisor wrote:

> Hi Ravi,
>
> Thank you for reaching out. This sounds like an issue with the client 
> library itself so I would recommend posting your question to the GitHub 
> issues page here 
> . Their team 
> will be more equipped to assist you.
>
> Regards,
> Mitchell
> Google Ads API Team
>
> ref:_00D1U1174p._5004Q21B6H6: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/9b7aba68-d94d-4ff0-8913-21cd8c8e5105n%40googlegroups.com.


Re: Device type, OS, Device model setup API

2020-09-02 Thread denma test
Let me try with this code and get back to you.

On Wednesday, September 2, 2020 at 4:52:56 AM UTC+5:30, adsapiforumadvisor 
wrote:
>
> Hi Denma,
>
> Sorry I misled you in my previous message, you are right, SET is the 
> operator to use here.
>
> I was able to set a Platform criteria to target mobile phone devices for a 
> campaign that initially had it disabled in the settings. I did it using the 
> following code in PHP:
>   
>
> $campaignCriterionService = $adWordsServices->get($session, 
> CampaignCriterionService::class);
> 
> // Add a device criterion.
> $mobile = new Platform();
> $mobile->setId(30001);
> $mobileCriterion = new CampaignCriterion(
> $campaignId,
> null,
> $mobile,
> 5,
> CampaignCriterionCampaignCriterionStatus::ACTIVE
> );
>
> $operation = new CampaignCriterionOperation();
> $operation->setOperator(Operator::SET);
> $operation->setOperand($mobileCriterion);
> $operations[] = $operation;
>
> $result = $campaignCriterionService->mutate($operations);
>
>
> Once executed, I refreshed the Google Ads UI completely and could see it 
> reflected at two locations under my campaign: 
>
>- "Devices" menu on the left: the bid adjustment for the "Mobile 
>phones" device is now +400% 
>- In the campaign settings: under "Devices" I can see that "Mobile 
>phones" is now selected 
>
> Could you share more detail about the initial campaign targeting settings? 
> Also, what exact modifications do you expect to see after a successful API 
> call and where on the UI?
>
> Thanks,
>
> ref:_00D1U1174p._5004Q22YBAh: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/1cf3784d-d134-440e-8c0c-ae96ea0f9499o%40googlegroups.com.


RATE_EXCEEDED

2020-09-02 Thread lucie.ra...@gmail.com
Hello, how can I increase daily rate? Is it possible?

I'm getting the below  error:

googleads.errors.AdWordsReportBadRequestError: Type: 
RateExceededError.RATE_EXCEEDED

Trigger: Basic Access Daily Reporting Quota Field Path: None

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/9386a98c-26f0-4bbc-83e0-7a84eeb44675n%40googlegroups.com.


Can't get the fresh token

2020-09-02 Thread 大媒体
Hello, Team
  Why can't I get the refresh token when I call back after the 
authorization is successful?

This is my log
Array ( 
  [access_token] => 
  [expires_in] => 3597
  [scope] => https://www.googleapis.com/auth/adwords 
  [token_type] => Bearer 
)  

My code is in the attachmentI have removed sensitive information!!!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/65e3fe56-bbf4-4c1b-a3a8-a4fd5d86c127n%40googlegroups.com.
<>


Re: Bulk sending operations via mutate and checking current api connections

2020-09-02 Thread Darren USG
Darren replied:
Hi Anthony,

Looks interesting. So by doing this would this count as one operation or does 
it bypass the operations?

-- 

Darren Chamberlain

darren.chamberl...@usergain.com

On Tuesday, September 1st 2020, 2:55:11 PM adsapiforumadvi...@gmail.com 
 wrote:

Hi Darren,

Unfortunately, there is no workaround for this in the API. You could use bulk 
uploads from the UI. This will allow you to make changes to your account in 
bulk based on a spreadsheet.

Regards,

Anthony

Google Ads API Team

ref:_00D1U1174p._5004Q23w2QW:ref





Desk tracking: [DESK-bcdb-1g288c]

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/t.87444012.u318049.529247.6395ff0e-1ed4-49ce-a98c-70111b5acc47%40eu.teamworkdesk.com.


Re: Pull metrics for history campaign

2020-09-02 Thread 'Ajay Agarwal' via AdWords API and Google Ads API Forum
Hi,

Can you please share the email id to which I should send my reply? I don't
see an option to reply privately.

--
Best Regards,
*Ajay Agarwal*
Software Development Engineer II | GROUPON
ajagar...@groupon.com


On Wed, Sep 2, 2020 at 12:54 AM Google Ads API Forum Advisor Prod <
adsapiforumadvi...@gmail.com> wrote:

> Hi Ajay,
>
> Thanks for reaching out. With regard to your concern, can you please
> provide screenshot of the UI along with customer id and please reply
> privately to author options while sharing the details.
>
> Thanks,
> [image: Google Logo]
> Nirmitabahen Gaurav Patel
> Google Ads API Team
>
>
> ref:_00D1U1174p._5004Q23wEvv: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 a topic in the
> Google Groups "AdWords API and Google Ads API Forum" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/adwords-api/GeQJCxiwkwQ/unsubscribe.
> To unsubscribe from this group and all its topics, 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/eJmlI0QFZV7A0084PXxpSyTK2LooH1rnURbA%40sfdc.net
> 
> .
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/CAN30%2Bn52j9S2MDiwmxwgk9N3cP1Q8%3DyZf%3D4MBeEkYQSUt8hXgg%40mail.gmail.com.


Do upcoming changes to Search Term UI report impact the API report

2020-09-02 Thread jessic...@supermetrics.com
One of our clients noted a change to the "Search Terms" Report in the UI:
*Starting September 2020, the search terms report only includes terms that 
a significant number of users searched for, even if a term received a 
click. You may now see fewer terms in your report.*
https://support.google.com/google-ads/answer/7531771?hl=en

They wanted to know if this also would impact the data we are returning 
from our Google Ad integration, which is using the AdWords API report 
"Search Query Performance":
https://developers.google.com/adwords/api/docs/appendix/reports/search-query-performance-report

I wasn't able to find a clear answer, so I wanted to check here if someone 
could clarify if that September change will also reduce the number of terms 
returned by the API from that report.

Thank you!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/6d303788-70b4-45a3-be87-09a7d91a0676n%40googlegroups.com.


Empty data in Audience Performance Report with Test Account

2020-09-02 Thread maist...@gmail.com
Hello

I have a question, can i get data Audience Performance Report with test 
account?
because i have always get empty data in Audience Performance Report

Thanks
Regards,

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/78f4435e-c06e-4571-bdd5-49b86bf16b2an%40googlegroups.com.


Labels on Ad level in the Google Ads API vs Adwords

2020-09-02 Thread maria.r...@funnel.io
Hi the Google Ads API team! 

We are trying to request labels from the Google Ads API on an Ad level and 
want to match the request to give the same result as in the Adwords API.

In the Adwords API we use the request:
*SELECT Id, Labels, Clicks,** Impressions,** Cost, Date FROM 
AD_PERFORMANCE_REPORT DURING 20200701,20200702 *

But since there are no "labels" resource field in the ad_group_ad report we 
are trying to use the ad_group_ad_label report to get the labels names and 
map them to the corresponding ad ids in the response from the Google Ads 
API request. Mostly it works fine when we compare the labels in the 
responses, but in some cases we get more labels on an ad from the Google 
Ads API than from Adwords. Do you know what causes this discrepancy between 
the APIs?

Requests to the Google Ads API:
*SELECT ad_group_ad.ad.id, metrics.clicks, metrics.impressions, 
metrics.cost_micros, segments.date FROM ad_group_ad WHERE segments.date 
BETWEEN '2020-07-01' AND '2020-07-02'*
and 
*SELECT ad_group_ad.ad.id, label.name FROM ad_group_ad_label *

Best regards,
Maria Ravander,
Developer @ Funnel 


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/eae93b90-19a7-4092-9c04-355a21500462n%40googlegroups.com.


Pausing Smart Campaigns

2020-09-02 Thread eran....@gmail.com
Hello,
I have a script which closes video, display, and search campaigns.
How do I close using js APIs Smart (display/shopping) and Discovery 
campaigns?

Thank you

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/25e9b424-6bc2-4126-9d74-da5bdf244afcn%40googlegroups.com.


How to get all campaign costs?

2020-09-02 Thread Рабочая почта
Hello,  iam new with this API.
Problem:
I need to get cost of each campaigns i have(for specific data range) as 
*array*.
First question:
I can get this data only via ReportDownloader? And only as string or file?
Second question:
How can i add some cost to my testAccounts(without put some real money to 
this accs) in order to check it correctly?

Thanks.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7bad02b0-1951-4d0f-8aed-9c78dfe48626n%40googlegroups.com.