How to get Audience data

2020-09-18 Thread 'tetiana....@partners.2sixty.io' via AdWords API and Google Ads API Forum
Hi,

For current business needs we have to be able to fetch all existing 
audiences under campaign and it's data. Investigating Ads API documentation 
the only reference to audience I found is campaign_audience_view 
 
but 
it looks like it doesn't return any data except of resource_name.

I also found the way to get audiences through Adwords API using 
AUDIENCE_PERFORMANCE_REPORT 

 but 
unfortunately it doesn't return the whole necessary for us data.
Fields which we need are *Bid strategy type* and *Targeting settings*.

So my questions are the following:
1. Is there any way to fetch necessary for us data from Ads API?
2. Is there any way to fetch necessary for us data from Adwords API (in 
case Ads doesn't support it)?
3. If previous questions' answers are negative, please provide us with the 
way we can get this data.

Thank you in advance!
Tetiana

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/66fa1771-bda8-48f7-a63b-81bfdcb6f013n%40googlegroups.com.


Re: LocationView Service returns empty LocationInfo

2020-08-18 Thread 'tetiana....@partners.2sixty.io' via AdWords API and Google Ads API Forum
Hi Anash,
I just rerun this request for the same account/campaign, here are examples 
how correct response looks and how incorrect response looks:
Correct:
[image: Screen Shot 2020-08-18 at 3.25.21 PM.png]
Incorrect:
[image: Screen Shot 2020-08-18 at 3.25.31 PM.png]
As you can see correct campaign criteria contains location inside it.

But since criterion_id looks the same as geo_target_constant_id we can use 
your workaround and extract it from campaign_criterion resource name.
[image: Screen Shot 2020-08-18 at 3.25.21 PM.png]
Thanks,
Tetiana

On Monday, August 17, 2020 at 11:05:40 PM UTC+3 adsapiforumadvisor wrote:

> Hi Tetiana, cv,
>
> I'll file a request with the teams to investigate further. From an initial 
> glance, I do not see anything wrong with your request.
>
> As a workaroud, you can parse and lookup this information yourself as 
> follows:
>
> 1. Split the resource name by the ~ sign. The criterion ID is the second 
> half (e.g. 20321 from Tetiana's screenshot).
> 2. Make a call to LanguageConstantService 
> 
>  
> to retrieve the language details. Call GeoTargetConstantService 
> 
>  
> for location details.
> 3. Optionally, you can look up the values from the csvs linked at 
> https://developers.google.com/adwords/api/docs/appendix/codes-formats#languages
>  and https://developers.google.com/adwords/api/docs/appendix/geotargeting 
> respectively. 
> E.g. if you lookup the second CSV, 20321  corresponds 
> to "Ile-de-France,France", which can be confirmed on the UI under campaign 
> settings for the campaign ID you posted.
>
> Cheers
> Anash
>
> ref:_00D1U1174p._5004Q23IuF2: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/2f58f987-38b4-4eb1-9886-92cd565edbedn%40googlegroups.com.


Re: LocationView Service returns empty LocationInfo

2020-08-12 Thread 'tetiana....@partners.2sixty.io' via AdWords API and Google Ads API Forum

Hi, Bryan,
Or request query looks like this:

*SELECT*

* campaign_criterion.location.geo_target_constant,*

* campaign_criterion.negative*

*FROM*

* location_view*

*WHERE*

* campaign.id = 1378332378*

*AND campaign_criterion.negative = FALSE *

I can not send you logs with the error because I don't receive any error, 
the point is that response is successful BUT it is empty. That's why I sent 
you this screenshot to show how response looks in pdb mode:

[image: Screen Shot 2020-08-10 at 12.10.15 PM.png]

As you can see I receive campaign criterions (their amount is equal to 
amount of countries which are targeting on UI) of location type. BUT when 
I'm getting location from campaign_criterion it is empty although it must 
contain geo_target_constant string value, here this string value is empty. 
That is the issue, no obvious error occurs here.


BG,

Tetiana
On Tuesday, August 11, 2020 at 9:16:42 PM UTC+3 adsapiforumadvisor wrote:

> Hi Tetiana,
>
> Thank you for the update. I did see the screenshots with your code snippet 
> and your error message, however, in order for me to investigate why your 
> call seems to work fine in almost all cases except for this one, I'll need 
> the full request and response log that details the exact request and the 
> full response of the error that you're encountering. You can see how to 
> enable logs here 
> .
>  
> Could I ask you for these logs so that I can further investigate this 
> concern?
>
>
> Thank you,
> Bryan, Google Ads API Team
>
> ref:_00D1U1174p._5004Q23IuF2: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/dc09a6d5-a7fa-43c5-8a8f-abd89148c57dn%40googlegroups.com.


Re: LocationView Service returns empty LocationInfo

2020-08-11 Thread 'tetiana....@partners.2sixty.io' via AdWords API and Google Ads API Forum
HI, Bryan,
Screenshots with method body, request and response are in the first letter. 
If you have some additional questions, feel free to ask.

BG,
Tetiana

On Monday, August 10, 2020 at 10:46:46 PM UTC+3 adsapiforumadvisor wrote:

> Hi,
>
> Thank you for reaching out to us. I see that you're experiencing an issue 
> where you're receiving empty location campaign criteria. Could you provide 
> us with a request and response log for where you encounter this discrepancy 
> so that I can further investigate? You can reply privately using "reply 
> privately to author".
>
> Thank you,
> Bryan, Google Ads API Team
>
> ref:_00D1U1174p._5004Q23IuF2: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/a685bdcb-1373-4d36-ad2f-f49770ab72efn%40googlegroups.com.


Re: Issue in CampaignCriterions of type location

2020-07-21 Thread 'tetiana....@partners.2sixty.io' via AdWords API and Google Ads API Forum
Hi, Anthony!
Thanks, it was very helpful!
BG,
Tetiana

On Monday, July 20, 2020 at 5:04:38 PM UTC+3 adsapiforumadvisor wrote:

> Hi Tetiana,
>
> You can run a report from the location_view 
>  
> and select the field campaign_criterion.negative 
> 
>  
> from the campaign_criterion attributed resource. This field will show you 
> whether a location is targeted or excluded.
>
> Cheers,
> Anthony
> Google Ads API Team
>
> ref:_00D1U1174p._5004Q22XTi0: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/8f90039c-7cea-4ea0-999b-22a32b00f177n%40googlegroups.com.


Re: Bug in returning AdGroupType in response form AdGroupService

2020-07-16 Thread 'tetiana....@partners.2sixty.io' via AdWords API and Google Ads API Forum
I just made this request with previous and new versions of this libs, 
inconsistent response exists only in old versions.
So, you can stop investigating this issue.

Thank you very mush for your help!
Tetiana

On Thursday, July 16, 2020 at 5:40:51 PM UTC+3 
tetiana@partners.2sixty.io wrote:

> Since that time I also updated versions of this libraries:
>
> *google-ads==5.0.4 -> 5.1.0google==2.0.3 -> 3.0.0*
> May be there were some troubles in previous versions.
>
> On Thursday, July 16, 2020 at 5:30:38 PM UTC+3 
> tetiana@partners.2sixty.io wrote:
>
>> I noticed this bug a few days ago and made that request in the same day I 
>> wrote to Support team. Our MCC ID is 7735173772 <(773)%20517-3772>.
>> But I just rerun this request for the SAME entity I received 
>> type VIDEO_RESPONSIVE instead of 16.
>> [image: Screen Shot 2020-07-16 at 5.30.00 PM.png]
>> Is it possible that this issue doesn't exist any more?
>> On Thursday, July 16, 2020 at 5:12:38 PM UTC+3 adsapiforumadvisor wrote:
>>
>>> Hi Tetiana,
>>>
>>> Thank you for this information. Finally, could I ask you for the 
>>> approximate time you made this request (the ones in your images), and what 
>>> your MCC ID is that's associated with your developer token? Make sure 
>>> you're posting your Manager account number, and not your developer token 
>>> for privacy reasons.
>>>
>>>
>>> Thank you,
>>> Bryan, Google Ads API Team
>>>
>>> ref:_00D1U1174p._5004Q21lalW: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/4fbcf622-82a7-4810-9469-52115523670dn%40googlegroups.com.


Re: Bug in returning AdGroupType in response form AdGroupService

2020-07-16 Thread &#x27;tetiana....@partners.2sixty.io&#x27; via AdWords API and Google Ads API Forum
Since that time I also updated versions of this libraries:

*google-ads==5.0.4 -> 5.1.0google==2.0.3 -> 3.0.0*
May be there were some troubles in previous versions.

On Thursday, July 16, 2020 at 5:30:38 PM UTC+3 
tetiana@partners.2sixty.io wrote:

> I noticed this bug a few days ago and made that request in the same day I 
> wrote to Support team. Our MCC ID is 7735173772 <(773)%20517-3772>.
> But I just rerun this request for the SAME entity I received 
> type VIDEO_RESPONSIVE instead of 16.
> [image: Screen Shot 2020-07-16 at 5.30.00 PM.png]
> Is it possible that this issue doesn't exist any more?
> On Thursday, July 16, 2020 at 5:12:38 PM UTC+3 adsapiforumadvisor wrote:
>
>> Hi Tetiana,
>>
>> Thank you for this information. Finally, could I ask you for the 
>> approximate time you made this request (the ones in your images), and what 
>> your MCC ID is that's associated with your developer token? Make sure 
>> you're posting your Manager account number, and not your developer token 
>> for privacy reasons.
>>
>>
>> Thank you,
>> Bryan, Google Ads API Team
>>
>> ref:_00D1U1174p._5004Q21lalW: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/4e1843b1-8be5-4eae-aafd-7c9ae0f204dbn%40googlegroups.com.


Re: Bug in returning AdGroupType in response form AdGroupService

2020-07-16 Thread &#x27;tetiana....@partners.2sixty.io&#x27; via AdWords API and Google Ads API Forum
I noticed this bug a few days ago and made that request in the same day I 
wrote to Support team. Our MCC ID is 7735173772.
But I just rerun this request for the SAME entity I received 
type VIDEO_RESPONSIVE instead of 16.
[image: Screen Shot 2020-07-16 at 5.30.00 PM.png]
Is it possible that this issue doesn't exist any more?
On Thursday, July 16, 2020 at 5:12:38 PM UTC+3 adsapiforumadvisor wrote:

> Hi Tetiana,
>
> Thank you for this information. Finally, could I ask you for the 
> approximate time you made this request (the ones in your images), and what 
> your MCC ID is that's associated with your developer token? Make sure 
> you're posting your Manager account number, and not your developer token 
> for privacy reasons.
>
>
> Thank you,
> Bryan, Google Ads API Team
>
> ref:_00D1U1174p._5004Q21lalW: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/c12a5ac5-2229-4947-833e-aa041f1fff8fn%40googlegroups.com.


Re: Bug in returning AdGroupType in response form AdGroupService

2020-07-16 Thread &#x27;tetiana....@partners.2sixty.io&#x27; via AdWords API and Google Ads API Forum
Hi, Bryan!

Unfortunately I don't have permissions to reply directly to you.
In my first letter there are examples of responses with *ad_group.type*  
presented as *string* and as *int *and also there you can see account_id 
and ad_group_id for which we are fetching data.
[image: Screen Shot 2020-07-14 at 3.52.08 PM.png]

[image: Screen Shot 2020-07-14 at 3.52.34 PM.png]
I saw this kind of bug only with ad_group of 16th type but it's possible 
that API returns int for some other ad_group types.
We are using you Python client library and v3 version of Google Ads API 
Beta.
Our query is pretty simple and looks like this:
*"SELECT ad_group.resource_name, ad_group.id, ad_group.name, 
ad_group.status, ad_group.type, ad_group.ad_rotation_mode, 
ad_group.url_custom_parameters, ad_group.final_url_suffix FROM ad_group 
WHERE ad_group.status = 'ENABLED' AND campaign.id = '9725987021'"*

Thanks,
Tetiana
On Wednesday, July 15, 2020 at 8:48:05 PM UTC+3 adsapiforumadvisor wrote:

> Hi Tetiana,
>
> Thank you for your patience. I'm still currently taking a look at this 
> issue. Could you provide me with your request and response logs for where 
> you get this proto, and one when you don't get this proto? Could you also 
> confirm if you're using our client library, REST endpoints, and what 
> language you're using? For privacy, you can use the "reply privately to 
> author" button.
>
>
> Thank you,
> Bryan, Google Ads API Team
>
> ref:_00D1U1174p._5004Q21lalW: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/dbca4fc1-5d56-451d-8d18-90300377c651n%40googlegroups.com.


Re: Bug in returning AdGroupType in response form AdGroupService

2020-07-15 Thread &#x27;tetiana....@partners.2sixty.io&#x27; via AdWords API and Google Ads API Forum
Hi, Bryan

Yeah, I was sure that it's some kind of sequence number in enum. BUT why 
are we getting it only for 16th element? All other types come as a string, 
it would be strange to write a kind of hack in our code to search if type 
is int and if yes - map 16th element with it's value... Is it possible to 
make response consistent no matter what type the ad_group has?

Thanks,
Tetiana

On Tuesday, July 14, 2020 at 5:41:02 PM UTC+3 adsapiforumadvisor wrote:

> Hi Tetiana,
>
> Thank you for reaching out to us. The number you're seeing there is 
> actually a proto (see here 
> 
>  
> for a list of protos), and the one you're currently seeing is an 
> ad_group_type 
> proto 
> .
>  
> You can reference these numbers from this list 
> 
>  
> if you encounter these numbers via reports. Let me know if you have further 
> questions.
>
> Thank you,
> Bryan, Google Ads API Team
>
> ref:_00D1U1174p._5004Q21lalW: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/bf77e131-a825-4224-9b1f-5bc4443857e0n%40googlegroups.com.


Bug in returning AdGroupType in response form AdGroupService

2020-07-14 Thread &#x27;tetiana....@partners.2sixty.io&#x27; via AdWords API and Google Ads API Forum
Hi,

I just noticed a kind of very strange behavior when calling get method 
of AdGroupService. Usually type (AdGroupType enum) comes as a string in 
response:
[image: Screen Shot 2020-07-14 at 3.52.08 PM.png]

BUT for some campaigns/ad_groups it comes as a number. I guess that it can 
be a sequence number of value in this enum 
https://developers.google.com/google-ads/api/reference/rpc/v3/AdGroupTypeEnum.AdGroupType
 but 
it's still very strange inconsistency in response.
[image: Screen Shot 2020-07-14 at 3.52.34 PM.png]

Is it a kind of a bug in Ads API Beta?

Thanks,
Tetiana

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/fbf3759e-1c71-473e-8a5a-5315ac60ba54n%40googlegroups.com.