Improve incident reporting for Google Ads API on dedicated Google Ads status page

2022-09-29 Thread Robert Heise
Dear Google Ads API team,

on September 27 and 28th Google Ads API had a major outage as reported and 
discussed in following forum threads:

   - https://groups.google.com/g/adwords-api/c/Uwqy0BlkNDA
   - https://groups.google.com/g/adwords-api/c/Gx4QN7ER33s
   - https://groups.google.com/g/adwords-api/c/XUCcozWsybM
   - probably more, didn't dig deeper
   
The only status page for this incident I could find is 
https://ads.google.com/status/publisher/incidents/TzP81sKq9EBjuSGURXSq . 
This reports a far shorter and less severe impact, not matching the 
observed behavior. It reports "Incident began at *2022-09-28 09:45* and 
ended at *2022-09-28 21:30* (times are in *Coordinated Universal Time (UTC)*)." 
Most importantly it reported the issue with more than 1 day delay!

Actually the observed (observed based on our logs) service disruption began 
around 2022-09-27 6:00 UTC (or even earlier, this is just the time where 
the last report fetch succeeded terminating), until around 2022-09-27 13:00 
UTC not a single report fetch was successfully ended via search_stream, 
then smaller reports started to be successfully ended, but larger ones 
didn't work until the next day *2022-09-28 21:30 UTC* . Since search_stream 
is the endpoint suggested in all Google Ads API docs for fetching report 
data, I'd see this disruption as highly critical.

In my opinion the Google Ads status page at ads.google.com/status should 
have reported the incident far earlier and documented the steps taken on 
Google Ads team side. Instead of hiding these updates in the Google Ads API 
Forum. For most people the status page is the first source for information 
on service issues, not the forum.

For the next incident I request improving the incident reporting on Google 
side by sharing the Google Ads API issues *more accurately* and *more 
promptly* (with less delay) *via the dedicated Google Ads status page* at 
ads.google.com/status. The current incident had more than 1 day delay and 
still doesn't report accurately the time when the API service was disrupted.

Thanks,

Robert

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/0f761791-a1d4-410a-bd05-d535b4f1e699n%40googlegroups.com.


Segmenting Data Correctly

2022-09-29 Thread Moss Adams Data
Hello,

I have this Python function to call a basic campaign statistics report.

def main3(client, customer_id):
ga_service = client.get_service("GoogleAdsService")

query = """
SELECT campaign.id, campaign.name, ad_group.id, 
metrics.impressions, metrics.clicks, metrics.cost_micros, 
metrics.conversions, metrics.impressions, segments.date, 
ad_group.name, metrics.view_through_conversions
FROM ad_group
WHERE segments.date BETWEEN '2017-05-15' AND '2022-09-28' """

# Issues a search request using streaming.
stream = ga_service.search_stream(customer_id=customer_id, query=query)
data_dict = {}
for batch in stream:
for row in batch.results:
data_dict.update({row.segments.date: {"Campaign Name": 
row.campaign.name,
  "clicks": row.metrics.clicks,
  "conversions": row.metrics.conversions,
  "costs": row.metrics.cost_micros ,
  "impressions": row.metrics.impressions,
"ad group": row.ad_group.name,
 "View Through Conv": 
row.metrics.view_through_conversions}})
return data_dict

The data that it returns though is not correct because on the old AdWords 
API, there is data as shown in the first picture. [image: Google Ads 1.png]
But the new call that I have returns info like the second picture.
[image: Google Ads 2.png]

There is a whole month/date of information missing. How do I change the API 
call to give me the right segmentation?

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/f05df5e7-a094-409c-85dd-340574ac1ebdn%40googlegroups.com.


Re: Error: The developer token is not approved.

2022-09-29 Thread Jaime Oliver
Solved.

On Thursday, September 29, 2022 at 10:38:16 AM UTC-4 Jaime Oliver wrote:

> Hello Ernie,
>
> I have followed basically all the guides you have available on this issue. 
>
> 1) I created a test manager account in order to be able to create test 
> user accounts because this is the only way of doing that correct?
> 2) I have a live manager account with a dev token which is what I am using 
> in order to query the test accounts. However I still get access denied.
> 3) I have a GCP project where I have the OAUTH credentials and consent 
> screen setup.
> 4) I am using the following data:
>
> *developerToken* - Unapproved token from the live manager account
> *clientId* - Coming from the OAuth credentials
> *clientSecret* - Coming from the OAuth credentials
> *refreshToken* - Taken by authorizing APIs using OAuth Playground
> *clientId* - Using the client ID from the test account that I want to 
> query. See screenshot below.
> [image: image.png]
>
> I have already asked for a dev token review. However I would like to be 
> able to understand the system and query test accounts for future 
> development cases. Some guidance would be greatly appreciated. Thanks for 
> your time.
>
>
> On Thu, Sep 29, 2022 at 2:24 AM Google Ads API Forum Advisor 
>  wrote:
>
>> Hi Jaime,
>>
>> Thank you for raising your concern. Allow me to provide support.
>>
>> As the error message said, the developer token is not approved. 
>> Non-approved developer tokens can only be used with test accounts. With 
>> this, in order to create a test Google Ads account, where the non-approved 
>> developer token can be used and to know more information about the test 
>> account, you may refer to this document 
>> .
>>  
>> The IDs that you should be using in the API requests, not just in the 
>> *login-customer-id* and *customer_id, *should belong to the created test 
>> account.
>>
>> However, if you require using developer token in a production Google Ads 
>> account, you will need to request a basic access level for developer token 
>> by following this guide 
>> 
>> .
>>
>> Regards,
>> [image: Google Logo] 
>> Ernie John 
>> Google Ads API Team 
>>   
>>
>> ref:_00D1U1174p._5004Q2euQbM: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 
"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/fc19fee7-3967-4742-b4c1-c55d1d24fc21n%40googlegroups.com.


RE: Revoke refresh token through api

2022-09-29 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi there,

Thanks for reaching out to the Google Ads API Forum.

It is possible to manage the user access via Google Ads API. You can also audit 
users who have access to your account, modify their access levels, and remove 
user accounts. For more information, you may refer to this guide. If the user / 
email address is removed through the API, then the user's credentials and 
refresh token will also become invalid for that account.

Also, you may refer here on how grant or remove access to your Google Ads 
Account. A refresh token might stop working for one of these reasons:

The user has revoked your app's access.
The refresh token has not been used for six months.
The user changed passwords and the refresh token contains Gmail scopes.
The user account has exceeded a maximum number of granted (live) refresh tokens.
The user belongs to a Google Cloud Platform organization that has session 
control policies in effect.


Let me know if you have additional questions.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2eufbV: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 
"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/N7Uwo0RIZE55002g7RMugmQQKiDuf9ZGxeEA%40sfdc.net.


Shopping products difference between API and Interface.

2022-09-29 Thread Boris DETRY
We have a significant difference on the results from API and Ads interface. 
For the endpoint *shopping_performance_view  (*version 10*)* 

As you can see on the images below we have* 34,861 products from API but 
92,391 on the web interface. *

API: 
[image: Capture.PNG]

Web interface: 
[image: Capture.PNG]

*If I filter by impression > 0 : *The API return  34,861 products (same as 
without filter) and the web interface gives me 34,501 products. So, we get 
close but is not exact. 

*If I filter by impression = 0 : *The API return 0 products and the web 
interface show me 57,890 products. 

So is not only about "impressions", *what could be reasons for such a 
difference between API and interface for shopping products?  *

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 
"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/0643fbc7-3fa1-47c5-bffa-d476a9c25195n%40googlegroups.com.


Permission denied on test account

2022-09-29 Thread Stephen Bates
I have followed the steps here to setup a test 
account: 
https://developers.google.com/google-ads/api/docs/first-call/test-accounts 

I then followed the steps here to generate an OAuth2 client secret, client 
ID and refresh 
token: 
https://github.com/googleads/google-ads-dotnet/wiki/API-access-using-own-credentials-(desktop-application-flow)
 

I used all of those credentials (in addition to a developer token generated 
on our main production manager account) to try to make a call using the 
Google API (C# client library) to retrieve a list of campaigns in the test 
using the customer ID of the test client account created in the first step.

Unfortunately, I keep getting a Permission Denied error and I've exhausted 
all my options for troubleshooting. Full error stacktrace:

Grpc.Core.RpcException: 
 
Status(StatusCode="PermissionDenied", 
Detail="The caller does not have permission")
at Grpc.Net.Client.Internal.HttpContentClientStreamReader`2.MoveNextCore 
(CancellationToken
 
cancellationToken)
at Google.Ads.Gax.Interceptors.StreamingRpcInterceptor`1.MoveNext 
(CancellationToken
 
cancellationToken)
at Google.Api.Gax.Grpc.AsyncResponseStream`1.MoveNextAsync 
(CancellationToken
 
cancellationToken)
at 
Google.Ads.GoogleAds.V11.Services.GoogleAdsServiceClient.<>c__DisplayClass32_0.d.MoveNext
 

()

Any suggestions on what I should do?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/170944a7-b064-42cb-99f2-6c3baab538f2n%40googlegroups.com.


GCP Project and MCC's developer token unbind

2022-09-29 Thread Anthony Gomez Taboada
Hi,

Months ago, we linked a Google Ads Developer Token to a GCP Project with 
the intent to use it for a POC.

Nowadays we want to use another Google Ads Account (from a different MCC). 
However, we cannot do this, because said project is already binded with the 
previous Google Ads Account.

We would like to know if there is a request process or configuration so we 
could unbind the Google Ads Account from a GCP Project?.

Thanks in advance,
Anthony 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/e421aad8-e7c9-4a38-97a6-e779f6b1f052n%40googlegroups.com.


RE: error while creating responsive search ads

2022-09-29 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Jimmy,

Thank you for reaching out to us.

For our team to further investigate and validate if the creation of the 
Responsive Search Ads is indeed correct, could you provide us the complete API 
logs(request and response with request-id) generated on your end? Note that 
this can be requested or provided to the developer handling the Google Ads API 
transactions when logging of the API requests has been enabled. You may check 
here and click your client library for the specific guideline to enable it.

You may then send the requested information via the Reply privately to author 
option. If this option is not available, you may send the details directly to 
our googleadsapi-supp...@google.com alias instead

Best regards,

Heidi
Google Ads API Team
ref:_00D1U1174p._5004Q2eugXL: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 
"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/_CHq70RIZ7C600p-3TDi_mQb6sbGv7Mwc76w%40sfdc.net.


Re: Error: The developer token is not approved.

2022-09-29 Thread Jaime Oliver
Hello Ernie,

I have followed basically all the guides you have available on this issue.

1) I created a test manager account in order to be able to create test user
accounts because this is the only way of doing that correct?
2) I have a live manager account with a dev token which is what I am using
in order to query the test accounts. However I still get access denied.
3) I have a GCP project where I have the OAUTH credentials and consent
screen setup.
4) I am using the following data:

*developerToken* - Unapproved token from the live manager account
*clientId* - Coming from the OAuth credentials
*clientSecret* - Coming from the OAuth credentials
*refreshToken* - Taken by authorizing APIs using OAuth Playground
*clientId* - Using the client ID from the test account that I want to
query. See screenshot below.
[image: image.png]

I have already asked for a dev token review. However I would like to be
able to understand the system and query test accounts for future
development cases. Some guidance would be greatly appreciated. Thanks for
your time.


On Thu, Sep 29, 2022 at 2:24 AM Google Ads API Forum Advisor
 wrote:

> Hi Jaime,
>
> Thank you for raising your concern. Allow me to provide support.
>
> As the error message said, the developer token is not approved.
> Non-approved developer tokens can only be used with test accounts. With
> this, in order to create a test Google Ads account, where the non-approved
> developer token can be used and to know more information about the test
> account, you may refer to this document
> .
> The IDs that you should be using in the API requests, not just in the
> *login-customer-id* and *customer_id, *should belong to the created test
> account.
>
> However, if you require using developer token in a production Google Ads
> account, you will need to request a basic access level for developer token
> by following this guide
> 
> .
>
> Regards,
> [image: Google Logo]
> Ernie John
> Google Ads API Team
>
>
> ref:_00D1U1174p._5004Q2euQbM: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 
"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/CAJAVYhA5DfZEfktpwXvpMkqSc2sGM5wqxz4OWtSMT4vE0fSntQ%40mail.gmail.com.


RE: GenerateHistoricalMetrics for KeywordPlan(Campaigns) with multiple Geotargets

2022-09-29 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hello,

Thanks for reaching out. Can you please provide us with the complete request 
and response logs so we can see the full context of the issue?

Thanks,

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2eujED: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 
"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/t57qK0RIZ6JB00oitoKlTrT7-OqU-We_VT_g%40sfdc.net.


RE: Copy Google Ads data model

2022-09-29 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Tiep,

Thank you for reaching out to our support team.

The Google Ads API's reporting is designed for retrieving attributes and or 
statistics on a per resource level of an account, and would not be able to pull 
all the information all at once.

That said, for general campaign and ad group ad information, you may use the 
GoogleAdsService's search or searchStream methods (see guide) to pull the below 
reports :

campaign
ad_group_ad

For targeted criteria, these also have their own separate reports. You can 
refer here for more details. Below also are the common criteria reports with 
supported metrics that you can use :

keyword_view
location_view
search_term_view

In addition, using the query builder can also help in constructing your queries 
for the above resources. Let me know if this helps.

Best regards,

Peter Laurence
Google Ads API Team
ref:_00D1U1174p._5004Q2eulZb: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 
"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/UKwZl0RIZ629001N4vb6mjSA2LfBDQGmGOBA%40sfdc.net.


RE: Local get Refresh Token

2022-09-29 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Ankit,

Thanks for reaching out. It sounds like you are looking to complete OAuth 
authorization on your local machine, which can be done using the Desktop app 
flow.

If you have further questions on this process, please let us know and provide 
us with more details, if possible.

Regards,

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2euk9v: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 
"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/YwRy80RIZ62800q2cLW-_qQMOo1nRnU_tYrA%40sfdc.net.


Re: Performance of SearchStream

2022-09-29 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hello Robert,

Excellent!

Take care,

Nadine Wang
Google Ads API Team
ref:_00D1U1174p._5004Q2egxrU: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 
"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/v9ZNe0RIZ5XQ005AMVcdv0RYOpa3pcLpgQQA%40sfdc.net.


Re: Enhanced CPC optimization configuration

2022-09-29 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Titus,

This bidding option is a campaign level feature, so it wouldn't have any 
overriding effects for more granular entities.

Regards,

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2eh7L5: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 
"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/-xKoa0RIZ5LP005ZOpuuauQnOM-rqDR2r4gA%40sfdc.net.


Re: Performance of SearchStream

2022-09-29 Thread Robert Heise
Can confirm as well, fetches are back to normal. Thanks for fixing.

On Thursday, 29 September 2022 at 14:59:41 UTC+2 adsapi wrote:

> Greetings!
>
> Thanks for confirming. 
>
> Take care,
>
> [image: Google Logo] 
> Nadine Wang 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2egxrU: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 
"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/48e6ab3c-1d0e-4a1c-954c-f72bc4b12ab7n%40googlegroups.com.


Re: Performance of SearchStream

2022-09-29 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Greetings!

Thanks for confirming.

Take care,

Nadine Wang
Google Ads API Team
ref:_00D1U1174p._5004Q2egxrU: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 
"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/_9iK_0RIZ2R300R4Mc4h1sRKiwnd5y7XjDGw%40sfdc.net.


Re: Performance of SearchStream

2022-09-29 Thread 'Thomas Vincent-Sweet' via Google Ads API and AdWords API Forum
I can confirm the issue was solved from our perspective. Thanks for fixing 
it.

On Wednesday, September 28, 2022 at 10:33:06 PM UTC+1 adsapi wrote:

> Hello Google Ads API Community!
>
> We were able to make some changes. It looks like the requests are 
> returning to normal. We'll continue to monitor the situation. Please reach 
> out on this thread if you continue to see this issue.
>
> Thanks,
>
> [image: Google Logo] 
> Nadine Wang 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2egxrU: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 
"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/ab5bf172-9276-41f2-a441-afee580dc73bn%40googlegroups.com.


Re: Joining Of two table into Google Ads API

2022-09-29 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Shweta,

Thank you for your reply. I work with Sherwin and allow me to assist you here.

With regard to your question "Is it possible to merge ad_group_ad and 
Recommendation?" that you mentioned. I'm afraid that this is not possible as 
the ad_group_ad resource is not supported in the recommendation report.

The only resources that are supported in the recommendation report are the 
following:
ad_group
campaign
campaign_budget
customer

Best regards,

Jinky
Google Ads API Team
ref:_00D1U1174p._5004Q2euESO: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 
"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/u3B3L0RIZ1UX00Az31IcRASeqTw8xgvfPyEQ%40sfdc.net.


Copy Google Ads data model

2022-09-29 Thread Tiep Vu
Hi experts,
I'm trying to copy Google Ads data model to my company's local storage: I'd 
like to retrieve campaign pacing, all setting changes e.g. bid price, 
target criteria, and resulted performant metrics. Does this page contain 
all the data objects used by Google Ads UI, or at least sufficient for my 
purpose please: 
https://developers.google.com/google-ads/api/reference/rpc/v11/GoogleAdsRow?

Any suggestions to complete my task would be appreciated!
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 
"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/2ef83bec-9858-4f2c-bf37-50049d811cc5n%40googlegroups.com.


Re: Digest for adwords-api@googlegroups.com - 3 updates in 3 topics

2022-09-29 Thread Rungrot Oranon
Thanks you bro

[[Rungrot_Saibutdee]]

ในวันที่ พฤ. 29 ก.ย. 2022 17:58 น.  เขียนว่า:

> adwords-api@googlegroups.com
> 
>  Google
> Groups
> 
> 
> Topic digest
> View all topics
> 
>
>- GenerateHistoricalMetrics for KeywordPlan(Campaigns) with multiple
>Geotargets <#m_-20660676449069000_group_thread_0> - 1 Update
>- USER_PERMISSION_DENIED - User doesn't have permission to access
>customer. <#m_-20660676449069000_group_thread_1> - 1 Update
>- Enhanced CPC optimization configuration
><#m_-20660676449069000_group_thread_2> - 1 Update
>
> GenerateHistoricalMetrics for KeywordPlan(Campaigns) with multiple
> Geotargets
> 
> Team Data PerformicsDE : Sep 29 03:45AM -0700
>
> I have a similar problem.
> When I make this Request:
>
> "
> https://googleads.googleapis.com/v10/customers/MyCustomer_ID/keywordPlans/My_keywordPlans:generateHistoricalMetrics
> "
>
> I get the results for germany. I changed location in the Plan but I see no
> changes.
>
> I have tried to change the Body the Request but I get an error.
>
> {
> "error": {
> "code": 400,
> "message": "Invalid JSON payload received. Unknown name
> \"customerId\": Cannot find field.\nInvalid JSON payload received. Unknown
> name \"language\": Cannot find field.\nInvalid JSON payload received.
> Unknown name \"geoTargetConstants\": Cannot find field.\nInvalid JSON
> payload received. Unknown name \"keywordPlanNetwork\": Cannot find field.",
> "status": "INVALID_ARGUMENT",
> "details": [
> {
> "@type": "type.googleapis.com/google.rpc.BadRequest",
> "fieldViolations": [
> {
> "description": "Invalid JSON payload received.
> Unknown name \"customerId\": Cannot find field."
> },
> {
> "description": "Invalid JSON payload received.
> Unknown name \"language\": Cannot find field."
> },
> {
> "description": "Invalid JSON payload received.
> Unknown name \"geoTargetConstants\": Cannot find field."
> },
> {
> "description": "Invalid JSON payload received.
> Unknown name \"keywordPlanNetwork\": Cannot find field."
> }
> ]
> }
> ]
> }
> }
>
>
> => Do you know any way to specify the location or show the data at global
> level?
> Back to top <#m_-20660676449069000_digest_top>
> USER_PERMISSION_DENIED - User doesn't have permission to access customer.
> 
> Google Ads API Forum Advisor : Sep 29 10:05AM
>
> Hi Jaime,
>
> Thank you for reaching us out. I am Sherwin from Google Ads API support
> team. I hope that you are doing well today.
>
> Moving forward to your concern, I understand that you have 2 MCC accounts.
> Could you please provide us those 2 MCC accounts for us to check it on our
> end. The USER_PERMISSION_DENIED means that a user doesn't have permission
> to access a customer and you’re accessing a client customer using
> 'login-customer-id’ in the request.
>
> To address the above error, you will need to ensure that the user / email
> address you used to generate the credentials indeed has access to the
> account in your request. If the user / email address has access or is
> associated with the MCC / manager account, you will need to specify the
> said MCC / manager account ID as the value of the login-customer-id field.
>
> If the issue persists, please provide us the complete request and response
> logs with request ID and request header generated on your end? You can
> provide it via Reply privately to the author option. If this option is not
> available, then send it instead on this email address
> googleadsapi-supp...@google.com. If you haven't enabled the logging yet,
> logging can be enabled by navigating to the Client libraries > Your client
> library (ex. Java) > Logging documentation, which you can access from this
> link.
>
> Kind regards,
>
> Sherwin Vincent
> Google Ads API Team
> ref:_00D1U1174p._5004Q2euSYB:ref
> Back to top <#m_-20660676449069000_digest_top>
> Enhanced CPC optimization configuration
> 
> Selicean Titus : Sep 29 02:52AM -0700
>
> I understand. Thanks for investigating.
>
> I have one last question though, could you tell me if those fields have
> implications (enables or disables configuration) at the Ad Group or Ad
> level?
>
> Thank you!
>
> On Wednesday, 28 September 2022 at 21:30:40 UTC+3 adsapi wrote:
>
> Back to top <#m_-20660676449069000_digest_top>
> You received this digest because you're subscribed to updates for this
> group. You can change your settings on the group membership page
> 

Re: Resource getting exhausted even in the standard access level developer token

2022-09-29 Thread Mayank Mangal
Yes, it is still occurring and yes I know that there is some system 
frequency limit crossing which it throws the resource exhausted error. 
However, i have seen that it occurs randomly and is not so predictable at 
this point for me. 

I wanted to ask for that exact limit only. 

On Thursday, September 29, 2022 at 4:37:39 PM UTC+5:30 adsapi wrote:

> Hello Everyone,
>
> I am Carmela from the Google Ads API team as well. Thank you for posting 
> your concern.
>
> Moving forward, it appears that you are seeing the Resource_exhausted 
> error on your end. The said error means a system frequency limit has been 
> exceeded. It commonly occurs when you are sending too many requests in a 
> short period of time. Having said that please try setting up short delays 
> between requests or combining more operations in fewer requests.
>
> Furthermore, could you please retry the request and confirm to us if this 
> is still occurring on your end?
>
> Regards,
> [image: Google Logo] 
> Carmela 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2ehWcY: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 
"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/1fefce4b-83ae-492b-8f09-42a6e9567404n%40googlegroups.com.


Local get Refresh Token

2022-09-29 Thread Ankit Chandak
How to get refresh token in local system 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/93cbe8ad-e06d-4238-a718-17f23bff2ea9n%40googlegroups.com.


Re: Resource getting exhausted even in the standard access level developer token

2022-09-29 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hello Everyone,

I am Carmela from the Google Ads API team as well. Thank you for posting your 
concern.

Moving forward, it appears that you are seeing the Resource_exhausted error on 
your end. The said error means a system frequency limit has been exceeded. It 
commonly occurs when you are sending too many requests in a short period of 
time. Having said that please try setting up short delays between requests or 
combining more operations in fewer requests.

Furthermore, could you please retry the request and confirm to us if this is 
still occurring on your end?

Regards,

Carmela
Google Ads API Team
ref:_00D1U1174p._5004Q2ehWcY: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 
"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/9C2PC0RIYXK200crgAmZO7SCmVR92hNWLefA%40sfdc.net.


Re: GenerateHistoricalMetrics for KeywordPlan(Campaigns) with multiple Geotargets

2022-09-29 Thread Team Data PerformicsDE
I have a similar problem.
 When I make this Request:

"https://googleads.googleapis.com/v10/customers/MyCustomer_ID/keywordPlans/My_keywordPlans:generateHistoricalMetrics;

I get the results for germany. I changed location in the Plan but I see no 
changes. 

I have tried to change the Body the Request but I get an error. 

{
"error": {
"code": 400,
"message": "Invalid JSON payload received. Unknown name 
\"customerId\": Cannot find field.\nInvalid JSON payload received. Unknown 
name \"language\": Cannot find field.\nInvalid JSON payload received. 
Unknown name \"geoTargetConstants\": Cannot find field.\nInvalid JSON 
payload received. Unknown name \"keywordPlanNetwork\": Cannot find field.",
"status": "INVALID_ARGUMENT",
"details": [
{
"@type": "type.googleapis.com/google.rpc.BadRequest",
"fieldViolations": [
{
"description": "Invalid JSON payload received. 
Unknown name \"customerId\": Cannot find field."
},
{
"description": "Invalid JSON payload received. 
Unknown name \"language\": Cannot find field."
},
{
"description": "Invalid JSON payload received. 
Unknown name \"geoTargetConstants\": Cannot find field."
},
{
"description": "Invalid JSON payload received. 
Unknown name \"keywordPlanNetwork\": Cannot find field."
}
]
}
]
}
}


=> Do you know any way to specify the location or show the data at global 
level?
On Friday, 11 February 2022 at 09:25:04 UTC+1 l...@accuranker.com wrote:

> Hello, 
>
> I have a question regarding the Google Ads API. When I try to 
> execute GenerateHistoricalMetrics for KeywordPlan(Campaigns) with multiple 
> Geotargets only one result is returned. 
> Is this result the average of the values in the different Geotargets? If 
> so, is there a way to get the results from each Geotarget without creating 
> a new KeywordPlan with another location. 
>
> Looking forward to hear from you,
>
> Best regards,
> Lasse Bonner
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/287a6673-d81d-4a5b-ac25-dff3ada7597fn%40googlegroups.com.


Re: Enhanced CPC optimization configuration

2022-09-29 Thread Selicean Titus
I understand. Thanks for investigating. 

I have one last question though, could you tell me if those fields have 
implications (enables or disables configuration) at the Ad Group or Ad 
level? 

Thank you!

On Wednesday, 28 September 2022 at 21:30:40 UTC+3 adsapi wrote:

> Hi Titus,
>
> The Google Ads API does not currently support manual_cpc 
>  
> campaign bidding strategy subfields that allow for conversion/conversion 
> value optimization, though it does support enabling enhanced CPC. Please 
> allow me to submit an internal feature request on your behalf for these 
> subfields. Relevant updates will be posted in the release notes 
> .
>
> Regards,
>
> [image: Google Logo] 
> Matt 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2eh7L5: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 
"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/69b1ac9c-daba-46a0-9293-eff139e3f369n%40googlegroups.com.


adding negative keywords to Pmax campaigns

2022-09-29 Thread Can Kivanc
Hello,
Is it possible to add negative keywords to Pmax campaigns via API?

Thanks in advance,
Can

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f415f9cd-1c9b-4b8e-b0a6-e18e36b71d8an%40googlegroups.com.


error while creating responsive search ads

2022-09-29 Thread jimmy m
Hi,
While running your sample 
in 
https://developers.google.com/google-ads/api/docs/responsive-search-ads/create-responsive-search-ads
I got this error:
*ad_group_ad.ad.responsive_search_ad.headlines.extend(*
*TypeError: Expected a message object, but got text: "Experience the Stars"*

Couldn't find in the documentation how is the structure of that "message 
object"
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/3626bbda-8b22-4794-a7ed-e9497afedbe5n%40googlegroups.com.


GoogleAdsService.Search failed: The request took too long to respond.

2022-09-29 Thread Flavien
Hello,
I've an Ads Script. 
He's working since few month and since yesterday i've this error : 

Exception: Call to GoogleAdsService.Search failed: The request took too 
long to respond. at adsapp_compiled:18790:138 at adsapp_compiled:18801:9 at 
ta (adsapp_compiled:236:15) at Object.search (adsapp_compiled:244:20) at 
TI.search (adsapp_compiled:18921:36) at BI.search 
(adsapp_compiled:18486:19) at CI.search (adsapp_compiled:18581:20) at 
JI.search (adsapp_compiled:18673:19) at ld (adsapp_compiled:1076:32) at 
ld.next ()

Can you help me to solve this issue ? 

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 
"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/142412cf-d613-4cbd-9b83-0ef09f9984ddn%40googlegroups.com.


Revoke refresh token through api

2022-09-29 Thread SUBIN P VASU
Hi,
Is it possible to revoke the permission using api to regenerate the refresh 
token?
Is there any way?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/cb587bd5-3e00-43c1-a717-fa1d3192f367n%40googlegroups.com.


Re: Joining Of two table into Google Ads API

2022-09-29 Thread Shweta Suthar
Hi Sherwin,

Thank you for the update. 

we are trying to merge *ad_group_ad  
*not 
Ad_group 
 with Recommendation 
.
https://developers.google.com/google-ads/api/fields/v11/ad_group_ad

Is it possible to merge  *ad_group_ad 
 *and 
Recommendation 
?

Thanks,
Shweta Suthar

On Thursday, 29 September 2022 at 06:59:04 UTC+5:30 adsapi wrote:

> Hi Shweta,
>  
> Thank you for reaching us out. I am Sherwin from Google Ads API support 
> team. I hope that you are doing well today.
>
> Moving forward to your concern , it is somewhat possible because in the 
> Recommendation 
>  
> report, 
> the Ad_group 
>  is 
> listed as attribute resources. However, the Recommendation 
>  
> report 
> is a type of report that doesn't have any metrics so if you are looking for 
> the metrics of the Ad_group, it will not be fetched. So if you don't need 
> metrics, we suggest using the Recommendation 
>  
> report. 
> On the other hand, if you need the metrics of the Ad_group 
> , it is 
> not possible to combine the Recommendation 
>  
> because 
> it is not listed as attribute resources.
>
> I hope this helps but if you have other concerns, please let us know.
>
> Kind regards, 
> [image: Google Logo] 
> Sherwin Vincent 
> Google Ads API Team 
>   
>
>  
>
> ref:_00D1U1174p._5004Q2euESO: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 
"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/cfecd9d3-6bc6-4072-a1a3-5a20bd9c1741n%40googlegroups.com.