Enhancement conversion upload errors

2024-04-07 Thread Eric Xu
Hello teams, we use conversion api to upload conversion data for 
enhancement conversion, but I found that the response shows like below:
Kindly help us to find problems
(This is a DEBUG level log details):

[2024-04-07 17:19:07,590 - DEBUG] Making request: POST 
https://accounts.google.com/o/oauth2/token
[2024-04-07 17:19:07,596 - DEBUG] Starting new HTTPS connection (1): 
accounts.google.com:443
[2024-04-07 17:19:08,631 - DEBUG] https://accounts.google.com:443 "POST 
/o/oauth2/token HTTP/1.1" 200 None
[2024-04-07 17:19:10,319 - DEBUG] Request
---
Method: 
/google.ads.googleads.v16.services.ConversionAdjustmentUploadService/UploadConversionAdjustments
Host: googleads.googleapis.com
Headers: {
  "developer-token": "REDACTED",
  "login-customer-id": "7514302876",
  "x-goog-api-client": "gl-python/3.9.6 grpc/1.62.0 gax/2.17.1 gccl/23.1.0 
pb/4.25.3",
  "x-goog-request-params": "customer_id=6619459227"
}
Request: customer_id: "6619459227"
conversion_adjustments {
  gclid_date_time_pair {
gclid: 
"Cj0KCQjwiMmwBhDmARIsABeQ7xSQS1nOdZQz7zwAQVAwQzYypFBcdp8RGKUv47htsZ06KpmwSkw1hWYaAhAxEALw_wcB"
conversion_date_time: "2024-04-07 09:05:51+08:00"
  }
  order_id: "37433069"
  conversion_action: "customers/6619459227/conversionActions/6731257876"
  adjustment_type: ENHANCEMENT
  user_identifiers {
hashed_phone_number: 
"c7b2db6f1f915b45a4e053067ac1d318087623961b37c995a3bf4f87bb4eb521"
  }
}
partial_failure: true


Response
---
Headers: {
  "alt-svc": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000",
  "content-disposition": "attachment",
  "date": "Sun, 07 Apr 2024 09:19:10 GMT",
  "request-id": "u9jLPfDcZezrAbTvB4Oqow"
}
Response: partial_failure_error {
  code: 3
  message: "The conversion action specified in the adjustment request 
cannot be found. Make sure it\'s available in this account., at 
conversion_adjustments[0].conversion_action"
  details {
type_url: 
"type.googleapis.com/google.ads.googleads.v16.errors.GoogleAdsFailure"
value: "\n\343\001\n\003\230\007\033\022tThe conversion action 
specified in the adjustment request cannot be found. Make sure it\'s 
available in this 
account.\0323*1customers/6619459227/conversionActions/6731257876\"1\022\032\n\026conversion_adjustments\030\000\022\023\n\021conversion_action"
  }
}
results {
}
job_id: 3700792396033759445


[2024-04-07 17:19:10,320 - INFO] Request made: ClientCustomerId: 
6619459227, Host: googleads.googleapis.com, Method: 
/google.ads.googleads.v16.services.ConversionAdjustmentUploadService/UploadConversionAdjustments,
 
RequestId: u9jLPfDcZezrAbTvB4Oqow, IsFault: False, FaultMessage: None





And I have some questions to be answered:

1. Is the order_id required for google JS code in our business page?
2. Does the order_id and gclid_date_time_pair can be upload together?
3. How can we validate our upload success?

Please help us~, thx again

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/855af36d-d9a4-4248-82a8-ed4ac9f42aben%40googlegroups.com.


Re: Support for asset_group_name field in campaign_search_term_insights report

2024-04-07 Thread 'Shiva Deepthi Badam' via Google Ads API and AdWords API Forum
We were able to access asset_group_name and asset_group_id fields using the
asset_group

report. We no longer need this request. Thanks!

On Thu, Apr 4, 2024 at 7:58 PM Shiva Deepthi Badam 
wrote:

> Hi,
> Currently there is only support for asset_group resource name in
> campaign_search_term_insights
> 
> report. Can you support adding asset_group_name and asset_group_id
> to campaign_search_term_insights report?
> The reason behind asking this is, we want pmax search term data and
> asset_group data together.
> We are able to fetch the pmax search term data using the following query,
> but could not get asset_group data at this level:
>
> SELECT
>
> campaign_search_term_insight.campaign_id,
>
> campaign_search_term_insight.category_label,
>
> campaign_search_term_insight.id,
>
> metrics.clicks,
>
> metrics.impressions,
>
> metrics.conversions,
>
> metrics.ctr,
>
> segments.search_term,
>
> segments.search_subcategory
>
>   FROM
>
> campaign_search_term_insight
>
>WHERE
>
> segments.date BETWEEN ${dateRange}
>
> AND campaign_search_term_insight.campaign_id =
> '${campaignId}'
>
> AND campaign_search_term_insight.id =
> '${categoryLabelId}';
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/CAL4HPpH-c-OtwDh0mX%2BpfHPJCG%3DKVaiU4EqBixtN_79dS5pUoA%40mail.gmail.com.


Google Local Service Ads - Expected Credits

2024-04-07 Thread Adam Bocco
I am using the Google Ads API to pull in campaign and lead info for our 
GLSA campaigns. I am able to pull in cost via the campaign resource but in 
reality, this is typically offset by the 'expected credits' from approved 
disputed leads the previous month.

Is there any way to pull credits from the campaign resource?

I also pull in per-lead data via the local services lead resource  
, 
but there's no cost metric there so I can't compute the credits based on 
this data either.

Attached is an image from the GLSA console indicating the cost and expected 
credits.

I have also tried using the GLSA API 
 but 
the data returned is similarly restricted.

Thanks in advance,
Adam

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/971c206f-c683-43dc-bf23-747782620e8cn%40googlegroups.com.


Google Local Service Ads - Expected Credits

2024-04-07 Thread Adam Bocco
I am using the Google Ads API to get campaign and lead data for our GLSA 
campaigns.

The cost of a GLSA campaign is often offset by the credits received from 
disputed leads that were approved (see attached). I can fetch cost from the 
campaign resource but cannot find any way to pull in these expected credits.

The local service leads resource 
 
does not provide any per-lead cost info so I am not able to compute 
expected credits from this data either.

Thanks in advance,
Adam

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/f6647c0e-e4bd-40ac-8df7-f6046f50a943n%40googlegroups.com.


pmaxの仕様について

2024-04-07 Thread 加藤智明
2023年から、Google Ads API 
v15を使ってシステムを作っています。pmax作成の仕様が変わったせいか、バグが起きてしまいpmaxキャンペーンの作成ができません。2023年以降でpmaxキャンペーン作成の仕様変更箇所ご教示いただきたいです。

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/712fe123-e759-43d8-a62b-21b3fc651318n%40googlegroups.com.


pmaxについて

2024-04-07 Thread 加藤智明
2023年以降、Google Ads API v15で変更があったpmaxの仕様はなにですか?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/ecd329e3-0bae-420a-a626-e83c8f84683en%40googlegroups.com.


Re: application basic token error

2024-04-07 Thread Juan Gouveia
Hello, good evening, I have already sent a ticket to contact Contact Google 
Ads API Compliance and I have not received any responses either. It has 
been many business days since I requested the token. I would like to 
receive a response soon. If there are any changes I need to make to the 
basic token application request I will do so. but since I don't have status 
updates. I won't be able to know how I should proceed. When can I have 
answers regarding this. Thank you

On Friday, April 5, 2024 at 12:12:36 PM UTC+1 Google Ads API Forum Advisor 
wrote:

> Hi,
>
> Thank you for providing the additional information.
>
> @Compliance team, please confirm if you are able to assist in the below 
> access request.
>
> Summary:
>
> The user has applied for the standard access with the below details.
>
>- 
>
>Google Ads Manager Account (MCC) ID:  886-965-8972
>- Case ID: Not Provided\ 
>
> This message is in relation to case 
> "ref:!00D1U01174p.!5004Q02tOscP:ref" (ADR-00230015)
>
> Thanks,
>   
> [image: Google Logo] Google Ads API Team 
>
>  
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords 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/82847b2d-308e-4ec9-9ddd-1fa46fa05570n%40googlegroups.com.


Google Upload Video Questions

2024-04-07 Thread YangYang Wang
Hi, 

I'm trying to create a maximum impact campaign using the Google Ads API.

During use, I have successfully uploaded pictures and Youtube videos to my 
account assets. However, as for uploading videos, I have encountered two 
problems, and I need your help to answer them.

The first question is, can I upload my local videos into my account and use 
them as assets? Instead of uploading them to YouTube, they can be directly 
converted into assets of my account through the Goole API.

The second question is, if I can't upload a video directly using local 
video, how can I upload a video to YouTube through Google API and then get 
the YouTube video ID and upload it.

If these two problems are not solved, I think it will be a big trouble. 

I look forward to your reply. 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 
"Google Ads API and AdWords 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/3ac20bf4-e5bd-4304-b02e-a69993170afan%40googlegroups.com.


Re: application basic token error

2024-04-07 Thread Juan Gouveia
Hi Team,

Any updated here? 

Thanks,
Juan Gouveia

On Friday, April 5, 2024 at 12:12:36 PM UTC+1 Google Ads API Forum Advisor 
wrote:

Hi,

Thank you for providing the additional information.

@Compliance team, please confirm if you are able to assist in the below 
access request.

Summary:

The user has applied for the standard access with the below details.

   - 
   
   Google Ads Manager Account (MCC) ID:  886-965-8972
   - Case ID: Not Provided\ 

This message is in relation to case 
"ref:!00D1U01174p.!5004Q02tOscP:ref" (ADR-00230015)

Thanks,
  [image: Google Logo] Google Ads API Team 

 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords 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/f3a31ae0-f760-4564-a9be-5e99c1caa718n%40googlegroups.com.


Permission denied

2024-04-07 Thread CogniTech Systems
Test app that has been working for over a week now, suddenly API calls 
stopped working with permission denied, we removed the test app, readded 
and generated new tokens, ran our app again, permission denied. Please 
explain what is going on, there is not a single day where there is not 
issues with your platform. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/6cafaf4a-4682-4cdb-b5b1-c5df5a2db9ddn%40googlegroups.com.


RE: pmaxの仕様について

2024-04-07 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
こんにちは、

Google Ads API サポート チームにお問い合わせいただきありがとうございます。

Google Ads API に追加された変更の詳細については、リリース ノートを参照することをお勧めします。 詳細については、「P-MAX 
の使い方」と「P-MAX レポート」のドキュメントをご覧ください。

それでも問題が解決しない場合は、API 経由で PMax キャンペーンを作成する際に発生したバグの詳細を提供していただくようお願いいたします。

Original Message (English):

Hi,

Thank you for reaching out to the Google Ads API support team.

I would suggest you refer to the Release Notes to get more information on the 
changes that were added to the Google Ads API. Kindly refer to the documents 
Get started with Performance Max and Performance Max reporting for more details.

If you are still facing any issues, I would request that you please provide 
more details on the bug that you are encountering while creating a PMax 
campaign via the API.

Our team can support your case better in English, but we can continue to use 
our translation tools to support you in the current language if you prefer.  
You can simply reply back in English if you’d like to switch.
This message is in relation to case "ref:!00D1U01174p.!5004Q02tOv9y:ref" 
(ADR-00230266)

Thanks,

Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords 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/nktEI0SBLUUD000A8fPYwHSS2KBEmVOHEJ6g%40sfdc.net.


RE: pmaxについて

2024-04-07 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for reaching out to the Google Ads API support team.

I see that you have already raised this concern on another thread with 
"pmaxの仕様について" and we have already responded there for this issue. To avoid 
multiple threads on the same issue, please take a look at that thread and 
continue the discussion on the same for further updates on the issue.
This message is in relation to case "ref:!00D1U01174p.!5004Q02tOvA3:ref" 
(ADR-00230267)

Thanks,

Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords 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/Kl-a50SBLV6F00iwKueD0wQn66uXsuAWWkMw%40sfdc.net.


Re: api call failed with 429 status but apparently was successfully executed

2024-04-07 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Kindly note that we cannot investigate the issue without sufficient details. We 
need your Google Ads account Id(CID) and complete API logs to analyse further 
from our end. Please send these details via Reply privately to the author 
option, or direct private reply to this email, note that your information will 
be kept confidentially.
This message is in relation to case "ref:!00D1U01174p.!5004Q02tOr2P:ref" 
(ADR-00229925)

Thanks,

Google Ads API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords 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/WjhSJ0SBM23A00QlTigSNnRqGj04BvUKPwsw%40sfdc.net.