Filter AdGroups by label with GAQL

2019-12-13 Thread 'Dmitrii Stebliuk' via AdWords API and Google Ads API Forum
Hello, I am getting AdGroups by a label and I would like to write a GAQL 
script.

I am using the GAQL builder 

. 
I choose a resource: ad_group.
In the fields, I see "ad_group.labels", but in the filters, there are no 
labels.

How can I filter ad_groups by a label in the GAQL?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/8d1b0289-0d1f-4663-a64b-7ffc12b8466d%40googlegroups.com.


Calculate the length for headlines / descriptions

2019-10-01 Thread Dmitrii Stebliuk
Hello,

I wonder how do you calculate a headline length for double-width characters.
I could not find a proper definition of "double-width" character.

And if for example I take a headline like  "a₹", while creating an Ad 
through Adwords UI I see that the length is 3.

Double-width  
characters count as two characters for the purpose of this limit.

But if I get utf-8 bytes of this String, it is 4, because "a" is 1 byte and 
"₹" is 3 bytes.

So I use this Java code to match the Google way of calculating the length:

String s = "a₹";
int charsLength = s.length();
int bytesLength = s.getBytes("UTF-8").length;
int googleLength = charsLength + (bytesLength - charsLength) / 2;
System.out.println("String length: " + charsLength);
System.out.println("Bytes length: " + bytesLength);
System.out.println("Google length: " + googleLength);

but I am not sure this is the correct way.

Can you please advise what is the correct way of calculating the string 
length to match it with the way you calculate it for the limits?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7ca9ed7a-ce41-4bc2-bc67-bebc9729f4d7%40googlegroups.com.


Re: Google Ads API Bulk Mutates Response Order

2019-08-07 Thread Dmitrii Stebliuk
Hello Sai Teja,

Thank you for your response.

Basically I create many "ads" with one mutate request. Let's say 1000 ads. 
Each ad has "h1, h2, h3, d1, d2" attributes.
I get a response from Google Ads API as List[MutateAdGroupAdResult] where 
each item has only `resource_name` and it is the list of 1000 items.
I want to persist the result of the operation List[(resource_name, h1, h2, 
h3, d1, d2)].
So if you say that there is no order correlation, how can I correlate the 
1000 items I sent with the 1000 resource_names I got?

On Tuesday, 6 August 2019 18:26:44 UTC+2, adsapiforumadvisor wrote:
>
> Hello Dmitrii,
>
> The bulk mutate operation may not complete the execution in the same order 
> they were sent. Also, each MutateGoogleAdsRequest accepts a 
> repeated MutateOperation, each of which can include a single operation for 
> one resource type as mentioned here 
> . 
> In case if you are intend to use the resource name from the other 
> operations in the API call which are yet to be created, you can use 
> Temporary name as mentioned here 
> . 
> Please let me know if you have any further questions.
>
> Regards,
> Sai Teja, Google Ads API Team
>
> ref:_00D1U1174p._5001UEI0px: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/d59266d3-a539-4422-9d0a-189cc96b6e51%40googlegroups.com.


Google Ads API Bulk Mutates Response Order

2019-08-06 Thread Dmitrii Stebliuk
Hello,

when we send a bulk mutate operations to Google Ads API 
(https://developers.google.com/google-ads/api/docs/mutating/bulk-mutate), 
can we rely that the order of operations we send is the same as the order 
of response items we get?


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/cf0f5ad3-b4eb-4f43-a39c-6e68b3c7f416%40googlegroups.com.


Google Ads API Universal App Campaigns

2019-07-04 Thread Dmitrii Stebliuk
Hello,

When I try to create an Universal App Campaigns witn new google-ads-api, I 
get an error message:
2019-07-04 10:48:52,857 WARN  [Gax-7] logging.RequestLogger 
(RequestLogger.java:159) - FAILURE REQUEST SUMMARY. Method: 
google.ads.googleads.v2.services.CampaignService/MutateCampaigns, Endpoint: 
googleads.googleapis.com:443, CustomerID: {customer-id}, RequestID: 
JvIxWwqhbUPyq95eSzIi6w, ResponseCode: INVALID_ARGUMENT, Fault: Request 
contains an invalid argument..
2019-07-04 10:48:53,047 INFO  [Gax-7] logging.RequestLogger 
(RequestLogger.java:157) - FAILURE REQUEST DETAIL.
Request
---
MethodName: google.ads.googleads.v2.services.CampaignService/MutateCampaigns
Endpoint: googleads.googleapis.com:443
Headers: {developer-token=REDACTED, login-customer-id={mcc-id}, 
x-goog-api-client=gl-java/11.0.1 gapic/ gax/1.45.0 grpc/1.21.0}
Body: customer_id: "{customer-id}"
operations {
  create {
name {
  value: "Interplanetary Cruise App #1562230131731"
}
status: PAUSED
campaign_budget {
  value: "customers/{customer-id}/campaignBudgets/2120147970"
}
advertising_channel_type: MULTI_CHANNEL
advertising_channel_sub_type: APP_CAMPAIGN
start_date {
  value: "20190705"
}
end_date {
  value: "20190803"
}
manual_cpc {
}
dynamic_search_ads_setting {
  domain_name {
value: "example.com"
  }
  language_code {
value: "en"
  }
}
  }
}


Response

Headers: 
Metadata(content-type=application/grpc,request-id=JvIxWwqhbUPyq95eSzIi6w,date=Thu,
 
04 Jul 2019 08:48:52 GMT,alt-svc=quic=":443"; ma=2592000; v="46,44,43,39")
Body: null
Failure message: errors {
  error_code {
operation_access_denied_error: MUTATE_ACTION_NOT_PERMITTED_FOR_CLIENT
  }
  message: "A mutate action is not allowed on this campaign, from this 
client."
  trigger {
string_value: ""
  }
  location {
field_path_elements {
  field_name: "operations"
  index {
  }
}
  }
}

Status: Status{code=INVALID_ARGUMENT, description=Request contains an 
invalid argument., cause=null}.
Request ID JvIxWwqhbUPyq95eSzIi6w failed due to GoogleAdsException. 
Underlying errors:
  Error 0: error_code {
  operation_access_denied_error: MUTATE_ACTION_NOT_PERMITTED_FOR_CLIENT
}
message: "A mutate action is not allowed on this campaign, from this 
client."
trigger {
  string_value: ""
}
location {
  field_path_elements {
field_name: "operations"
index {
}
  }
}

I get the same error message when I try to update an existing UAC campaign.
If I just change campaign type from

.setAdvertisingChannelType(AdvertisingChannelType.MULTI_CHANNEL)
.setAdvertisingChannelSubType(AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType.APP_CAMPAIGN)


to 

.setAdvertisingChannelType(AdvertisingChannelType.SEARCH)


Then everything works fine.
Also creating UAC campaign works from old adwords-api.

How can I create an UAC campaign using google-ads-api?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/edc727ca-eb7b-47d1-a1c5-b69947785d9c%40googlegroups.com.


Get Learning status

2019-06-26 Thread Dmitrii Stebliuk
Hello,
I use shared bidding strategies, and after a change in AdWords for 
campaigns within the bid strategy I see "Campaign: Eligible, Bid strategy: 
Learning"

How can I obtain this "bid strategy: Learning" status?

I can not find any way, I am fine in any automatic way like: Google Ads 
API, Google Adwords API, Google Ads Scripts, GAQL, AWQL, Google Ads 
Transfer (BigQuery).

If It is accessible in the UI, is it possible it is missing in the API?

How can I do a feature-request for Google Ads API and follow it?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d191b09a-b1ef-4660-9763-7bf41361b873%40googlegroups.com.


Re: Google Ads API Python Client Library Pagination

2019-04-08 Thread dmitrii . stebliuk
Hello Sai,

Thank you for your response.
I've added an issue to 
github: https://github.com/googleads/google-ads-python/issues/73

Kind regards,
  Dmitrii.

On Friday, April 5, 2019 at 10:53:24 PM UTC+2, googleadsapi-forumadvisor 
wrote:
>
> Hello Dimitri,
>
> When you specify the page limit as 50 only 50 elements will be displayed 
> per page even though the LIMIT mentioned is 51. I tried the same scenario 
> at my end and I was able to get the 51th row in second page. If you are 
> still facing the issue, please raise an issue in our client library 
>  with the code 
> snippet, our client library owners are better equipped to answer this.
>
> Regards,
> Sai Teja, Google Ads API Team
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> https://ads-developers.googleblog.com/search/label/google_ads_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/62ddad0c-8351-4fb9-b04c-9b125e5e72bd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Google Ads API Python Client Library Pagination

2019-04-05 Thread dmitrii . stebliuk
Hello,

I use a python client library for Google Ads API.

I need to show to a user a result of an arbitrary GAQL query with 50 
elements per page pagination.

For example I have this query:

SELECT campaign.id
FROM campaign 
LIMIT 51

And this code to fetch the results:

client = google.ads.google_ads.client.GoogleAdsClient .load_from_storage()
google_ads_service = client.get_service('GoogleAdsService', version='v1')
return google_ads_service.search(customer_id, query, page_size=50)

But `google_ads_sevice` returns me 51 elements without next_page_token.

I can not also paginate using the query, because there is no "SKIP".

How should I paginate with the Python Google Ads Client Library?

Kind regards,
  Dmitrii.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b8b68582-eb8a-49aa-bcbe-ef0f93a5df90%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [6-4744000025765] Obtain Campaign Statuses

2019-03-27 Thread dmitrii . stebliuk
Hi Dave,

Thank you for your answer.

I see in the documentation that for some bidding strategies eligibility is 
looks to be just a simple predicate like "To use Target ROAS bidding, your 
campaign must have at least 20 conversions in the past 45 days."  

It works for me like that. Do you know if there is a better documentation 
where I can understand if for other bidding strategies?

Limited by budget - probably should be accessible in Google Ads API 
Recommendation Service (I need to check it)

But Learning status I can not find anywhere, not in BiddingStrategy 
resource, not in old Google Adwords API documentation...
Do you know if there is any workaround to get it? Can I get it from another 
resource like BiddingStrategy? or the old Adwords API?
Or may be I can calculate it somehow?

Thank you!


On Wednesday, 27 March 2019 07:31:43 UTC+1, googleadsapi-forumadvisor wrote:
>
> Hi,
>
> Thank you for reaching out. Unfortunately, these statuses cannot be 
> obtained via Google Ads API. You may refer to this guide 
> 
>  to 
> see the campaign statuses that are obtainable in the API.
>
> Let me know if this helps. Should you have clarifications, feel free to 
> write back.
>
>
> Regards,
> Dave Paurillo
> Google Ads API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> On 03/26/19 17:09:42 dmitrii@omio.com  wrote:
>
> Hello,
>
> In the Google Ads UI I see different statuses:
> - Eligible
> - Eligible (Learning)
> - Limited by Budget
> How can I obtain all these statuses for a campaign with Google Ads API?
>
> 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.
> Visit this group at https://groups.google.com/group/adwords-api.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/adwords-api/7b20f124-6dce-4430-8c48-c91bc6fee42d%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ec597d90-3627-4ffc-8e53-c8135f227a21%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Obtain Campaign Statuses

2019-03-26 Thread dmitrii . stebliuk
Hello,

In the Google Ads UI I see different statuses:
- Eligible
- Eligible (Learning)
- Limited by Budget
How can I obtain all these statuses for a campaign with Google Ads API?

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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7b20f124-6dce-4430-8c48-c91bc6fee42d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


SharedBiddingStrategy with Google Ads API

2019-03-14 Thread dmitrii . stebliuk
Can we query and mutate SharedBiddingStrategies with Google Ads API?

https://developers.google.com/adwords/api/docs/reference/v201809/BiddingStrategyService.SharedBiddingStrategy

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3f41457b-d695-4fcb-8a1d-263adc858e59%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.