Pause keyword using Ads API Beta w/ Python

2020-04-14 Thread 'Ky Nguyen' via AdWords API and Google Ads API Forum
I'd like to programmatically pause some keywords within an ad group. I was 
only able to find how to remove a keyword. 
 
After 
looking at the AdGroupCriterionOperation proto file 
,
 
there does not appear to be a "Pause" field. Is there a different operation 
type that I should use? 

Thanks,
Ky

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/b4ffb987-ca4d-45aa-97c4-e42d0a684391%40googlegroups.com.


Google Ads call produces a grpc error: InvalidFlags

2020-04-14 Thread V Kuznetsov
Hello, 

I am getting this cryptic error when I call Google Ads api:
System.InvalidOperationException: Call error: InvalidFlags
   at Grpc.Core.Internal.CallErrorExtensions.CheckOk(CallError callError)
   at 
Grpc.Core.Internal.CallSafeHandle.StartUnary(IUnaryResponseClientCallback 
callback, Byte[] payload, WriteFlags writeFlags, MetadataArraySafeHandle 
metadataArray, CallFlags callFlags)
   at Grpc.Core.Internal.AsyncCall`2.UnaryCallAsync(TRequest msg)
   at 
Grpc.Core.Calls.AsyncUnaryCall[TRequest,TResponse](CallInvocationDetails`2 
call, TRequest req)
   at 
Grpc.Core.DefaultCallInvoker.AsyncUnaryCall[TRequest,TResponse](Method`2 
method, String host, CallOptions options, TRequest request)
   at 
Grpc.Core.Interceptors.InterceptingCallInvoker.b__4_0[TRequest,TResponse](TRequest
 
req, ClientInterceptorContext`2 ctx)
   at 
Google.Ads.GoogleAds.Interceptors.GoogleAdsGrpcInterceptor.AsyncUnaryCall[TRequest,TResponse](TRequest
 
request, ClientInterceptorContext`2 context, AsyncUnaryCallContinuation`2 
continuationCallback)
   at 
Grpc.Core.Interceptors.InterceptingCallInvoker.AsyncUnaryCall[TRequest,TResponse](Method`2
 
method, String host, CallOptions options, TRequest request)
   at 
Grpc.Core.Interceptors.InterceptingCallInvoker.b__4_0[TRequest,TResponse](TRequest
 
req, ClientInterceptorContext`2 ctx)
   at 
Grpc.Core.ClientBase.ClientBaseConfiguration.ClientBaseConfigurationInterceptor.AsyncUnaryCall[TRequest,TResponse](TRequest
 
request, ClientInterceptorContext`2 context, AsyncUnaryCallContinuation`2 
continuation)
   at 
Grpc.Core.Interceptors.InterceptingCallInvoker.AsyncUnaryCall[TRequest,TResponse](Method`2
 
method, String host, CallOptions options, TRequest request)
   at 
Google.Ads.GoogleAds.V3.Services.CustomerService.CustomerServiceClient.ListAccessibleCustomersAsync(ListAccessibleCustomersRequest
 
request, CallOptions options)
   at Google.Api.Gax.Grpc.ApiCall.GrpcCallAdapter`2.CallAsync(TRequest 
request, CallSettings callSettings)
   at Google.Api.Gax.Grpc.ApiCall.GrpcCallAdapter`2.CallSync(TRequest 
request, CallSettings callSettings)
   at 
Google.Api.Gax.Grpc.ApiCallRetryExtensions.<>c__DisplayClass1_0`2.b__0(TRequest
 
request, CallSettings callSettings)
   at 
Google.Ads.GoogleAds.V3.Services.CustomerServiceClientImpl.ListAccessibleCustomers(ListAccessibleCustomersRequest
 
request, CallSettings callSettings)
   at 
Google.Ads.GoogleAds.V3.Services.CustomerServiceClient.ListAccessibleCustomers()

What possibly could be the reason for this?
Thank you.

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

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7722167f-dbf6-4aac-abc6-edf28a339b4b%40googlegroups.com.


Re: Google Ads API: cannot filter by a field which is not in select

2020-04-14 Thread hiromi hishida
Hi Xiaoming,

Thank you for reply.

But we do not want to segment the report by ad_network_type.

AdWords API allows us to get the report segmented by only date with 
ad_network_type filtering.

expected report:
date, impression, clicks, impression_share, ...
2020-04-01, 100, 10, 0.1, ...
2020-04-02, 200, 10, 0.1, ...
2020-04-03, 300, 10, 0.1, ...

report with ad_network_type select as you mentioned:
date, ad_network_type, impression, clicks, impression_share, ...
2020-04-01, CONTENT, 50, 5, 0.1, ...
2020-04-01, YOUTUBE_SEARCH, 50, 5, 0.1, ...
2020-04-02, CONTENT, 200, 10, 0.1, ...


Is there any methods to do this?

regards,

2020年4月15日水曜日 3時30分38秒 UTC+9 adsapiforumadvisor:
>
> Hi Hiromi,
>
> Thank you for reaching out. If you put segments.ad_network_type in the 
> WHERE clause you would also have to put it in the SELECT clause in order to 
> successfully query the data. Please let me know if you have any further 
> questions. 
>
> Thanks and regards,
> Xiaoming, Google Ads API Team
>
>
>  
>
> ref:_00D1U1174p._5001UZXzFz: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/18e52795-34f2-4b96-adb1-060dcc9615e2%40googlegroups.com.


Re: SERVICE_ACCESS_DENIED when trying to call API

2020-04-14 Thread Google Ads API Forum Advisor Prod
Hi Luciano,

I would suggest you to use the email associated with your MCC account to 
re-generate the OAuth2 credentials by following steps in this guide and use the 
new OAuth2 credentials to make the Adwords/Google Ads API calls. If the issue 
still persists, please allow some more time and then try it again as it might 
take some time for the token to take effect for the Adwords API/Google Ads API 
after it’s approved. However, in the case that the issue persists, please 
contact the Compliance Team via this form for further support as our team is 
only focused on the Adwords API/Google Ads API related issues.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UZWTBA: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/bwGQn0Q8SOFN00qxPOIW9DQvuQ35jakyI2eQ%40sfdc.net.


Re: BID_GOAL_PERFORMANCE_REPORT: Field "type" can have "--" ?!

2020-04-14 Thread Google Ads API Forum Advisor Prod
Hi Zweitze,

Feel free to share any errors you find in the documentation so I can bring it 
to the attention of my team.

In terms of the Bid Strategy ID, I will have my team look into it internally 
and let you know.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UZXK9s: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/-TwGg0Q8SO0A00_sx1C-3hRuqUMO0sWEPElg%40sfdc.net.


RE: Always hit the RateExceededError

2020-04-14 Thread Google Ads API Forum Advisor Prod
Hi Zafar,

Thank you for getting back to us. My concern is whether you have others using 
your developer token as well, in which you can hit the limit if there are other 
users making calls to your developer token (if you've shared this token with 
other manager accounts). Every Google Ads manager account signed up to use 
AdWords API has a single developer token, and every request you make is most 
likely associated with that developer token. If the combined QPS for all client 
requests using the same developer developer token exceeds a certain rate limit, 
then you will encounter this error. Could you please recheck if anyone else is 
using this token to make the API calls? If you're still receiving this error, 
could you please share the complete API SOAP logs using Reply privately to 
author option to investigate further?

Thank you,
Bryan, Google Ads API Team
ref:_00D1U1174p._5001UZXyxq: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/kgklB0Q8SL8R00wRQWzfsZS9iU-T75_ukwKQ%40sfdc.net.


RE: TrafficEstimatorService requests max amount and operation count or batch of keywords

2020-04-14 Thread Google Ads API Forum Advisor Prod
Hi Yair,

Thank you for reaching out. The maximum number of keyword estimate requests 
across all campaign estimate requests and ad group estimate requests is 2500. 
You could find more details about the TrafficEstimatorService here. As this is 
a get operation, if you send 10 keywords in one request it counts as 1 
operation for the daily limit. You could refer to this documentation for more 
details on how the daily limit is calculated. Please let me know if you have 
any further concerns.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UZXzvq: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/jGi_70Q8SKUP00g1Z_ESs1STikUOrnhecMSg%40sfdc.net.


Retrieve Overdue Account Balance Alerts via API

2020-04-14 Thread Pete Lavetsky (AdWords API Guru)
Hi All,

Via the API, is it possible to retrieve account alerts like the one seen in 
the attached file? It's for an "overdue account balance" alert that results 
in Ads not running.

Also, is the InvoiceService a Whitelist only service? 
https://developers.google.com/google-ads/api/docs/billing/invoice-service

I received this when attempting to retrieve invoices with InvoiceService 
listInvoices

Failure message: errors {

  error_code {

authorization_error: DEVELOPER_TOKEN_NOT_WHITELISTED

  }

  message: "Developer token is not whitelisted."

}


Thanks

Pete

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a1b6bc7e-ad79-4834-a85c-50e1b7727309%40googlegroups.com.


RE: Google Ads API: cannot filter by a field which is not in select

2020-04-14 Thread Google Ads API Forum Advisor Prod
Hi Hiromi,

Thank you for reaching out. If you put segments.ad_network_type in the WHERE 
clause you would also have to put it in the SELECT clause in order to 
successfully query the data. Please let me know if you have any further 
questions.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UZXzFz: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/ZwJ1V0Q8SJE900ULmSRGn1TS6j2DmVFei1dA%40sfdc.net.


Re: Google AdWords API 400 "Bad Request" "invalid_grant" error: is it possible for refresh_token to be expired?

2020-04-14 Thread Zweitze
I know a few circumstances where an Refresh Token expires, or becomes 
invalid:

1. Your software revoked the token 
.
 
In other words, your software has a Logout function and that was 
successfully called.
2. That user went to his Google account settings, Security, and then Manage 
third party access (direct link ). 
He saw your OAuth2 client (here called "third party app", clicked on it, 
and then clicked "Remove Access".
3. The Refresh token expired because it was not used in six months. By 
usage, it means obtaining an access token using that particular Refresh 
token.
4. The user granted your OAuth2 client over 50 times access, without 
logging out in between. For instance, you have a web application storing 
the refresh token in a cookie, and the user destroys his cookies every now 
and when. Because of that, he has to log in because the old tokens were 
never revoked. Now, if you also use that same OAuth2 client in an app, then 
at one point the refresh token for that app will become invalid.
5. The most likely reason: the requested OAuth2 scope was not limited to 
adwords, it also contained one or more gmail scopes. In that case, when a 
user changes his password, all refreshtokens with a gmail scope become 
invalid.

Reasons 2 to 5 are documented at the Google OAuth2 docs 
.

A few years ago I noticed that the last reason was incomplete. You get the 
same behaviour if a Google Analytics scope is included. I am not sure if 
this is still the case, this behaviour has never been officially documented.

When you do get to the bottom of it, please post your findings!


On Friday, April 10, 2020 at 10:28:18 PM UTC+2, adsapiforumadvisor wrote:
>
> Hi Petro,
>
> As mentioned in this 
> 
>  documentation, 
> refresh tokens do not expire. In order for me to further investigate what 
> has caused your issue, kindly provide your client customer ID and complete 
> detailed request and response logs. Please ensure that you *"Reply 
> privately to author" *when providing this information,
>
> Thanks,
> Danica Calusin, Google Ads API Team
>
> ref:_00D1U1174p._5001UZXKqw: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/c257d3f9-594e-47a1-9316-00bcd5143018%40googlegroups.com.


Re: Google AdWords API 400 "Bad Request" "invalid_grant" error: is it possible for refresh_token to be expired?

2020-04-14 Thread Zweitze
I know a few circumstances where an Refresh Token expires, or becomes 
invalid:

1. Your software revoked the token 
.
 
In other words, your software has a Logout function and that was 
successfully called.
2. That user went to his Google account settings, Security, and then Manage 
third party access (direct link ). 
He saw your OAuth2 client (here called "third party app", clicked on it, 
and then clicked "Remove Access".
3. The Refresh token expired because it was not used in six months. By 
usage, it means obtaining an access token using that particular Refresh 
token.
4. The user granted your OAuth2 client over 50 times access, without 
logging out in between. For instance, you have a web application storing 
the refresh token in a cookie, and the user destroys his cookies every now 
and when. Because of that, he has to log in because the old tokens were 
never revoked. Now, if you also use that same OAuth2 client in an app, then 
at one point the refresh token for that app will become invalid.
5. The most likely reason: the requested OAuth2 scope was not limited to 
adwords, it also contained one or more gmail scopes. In that case, when a 
user changes his password, all refreshtokens with a gmail scope become 
invalid.

Reasons 2 to 5 are documented at the Google OAuth2 docs 
.

A few years ago I noticed that the last reason was incomplete. You get the 
same results if an Google Analytics token is included. I am not sure if 
this is still the case, this behaviour has never been officially documented.

When you do get to the bottom of it, please post your findings!





On Friday, April 10, 2020 at 4:56:53 PM UTC+2, Casual Stone wrote:

> Hello. We store refresh tokens per user retrieved after OAUTH 2 
> authentication. We use refresh_token to fetch access_token if it is 
> expired. But recently I noticed that some of our customers get 400 "Bad 
> Request" "invalid_grant" error. While investigating the issue I noticed 
> that refresh_token was expired (or broken), but if you authenticate again 
> you get a new one, and everything starts working again.
> So my question — is it possible for refresh_token to be expired? Or Google 
> just changed recently the way token was generated? Or maybe we 
> unintentionally corrupted refresh_tokens somehow in our database?
>
> Kind Regards,
> Petro
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ded3837b-4e95-42ed-8af9-2d84d5ca50f4%40googlegroups.com.


RE: SearchStream Vs Search

2020-04-14 Thread Google Ads API Forum Advisor Prod
Hi Sreenu,

Thank you for your query. I see that you're putting the incorrect field in the 
"FROM" clause. I've written an example query for you below that you can 
populate with fields from this document.

"SELECT operating_system_version_constant.id, 
operating_system_version_constant.name, 
operating_system_version_constant.os_major_version, 
operating_system_version_constant.os_minor_version FROM 
operating_system_version_constant"

You can see that the FROM clause is pulling from the operating system version 
constant report type. Let me know if you have further questions.

Thank you,
Bryan, Google Ads API Team
ref:_00D1U1174p._5001UZVXb6: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/7gk1k0Q8SGQC00NEl6rERPRaKNea2mxGMWnw%40sfdc.net.


RE: Can't find ‘AdWords API Center’ in the account settings of my Manager account on Goofle Adwords

2020-04-14 Thread Google Ads API Forum Advisor Prod
Hi Abhishek,

Thank you for reaching out to us. I see that you would like to find the API 
Center in the Google Ads UI. When you log into your manager account, click 
"Tools and Settings" > " Setup" > "API Center" and you should find your 
developer token information there. If "API Center" does not show up under 
"Setup", click the "?" button in the top right hand corner and check if says 
"your manager account ID" or "customer ID". If it says the latter, then you're 
not in a manager account and won't find the API Center in that account. Let me 
know if you have further questions.

Thank you,
Bryan, Google Ads API Team
ref:_00D1U1174p._5001UZY0Mw: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/ZYiSl0Q8SGJX00dX2z27AVTL6uHliZnrOn6w%40sfdc.net.


RE: How to identify shared set owner account

2020-04-14 Thread Google Ads API Forum Advisor Prod
Hi Charles,

Thank you for reaching out. The SharedSets are used for sharing entities across 
multiple campaigns under the same account. Another thing is that the MCC 
account could not contain any criterion list themselves, neither the campaigns 
that you might already know. I hope this answered your question. Please let us 
know if you have any further concerns.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UZXs8t: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/Z2mq70Q8SGC7000g4xj3ddS16uSFLAwG5how%40sfdc.net.


AdWords API SERVICE_ACCESS_DENIED

2020-04-14 Thread Julián Fernández Osorio
I keep getting the error SERVICE_ACCESS_DENIED whenever I try to add users 
to an audience, I already contacted the compliance team and I have Adwords 
API permissions, what can be wrong?


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/02d12617-30b7-475f-83ae-944d8375913c%40googlegroups.com.


Re: SERVICE_ACCESS_DENIED when trying to call API

2020-04-14 Thread Luciano Agnelli
Hi Xiaoming

We have contacted to Compliance Team and the access to Google Ads API was 
approved.
However the problem continue.


On Monday, April 6, 2020 at 5:25:13 PM UTC-3, adsapiforumadvisor wrote:
>
> Hi Luciano,
>
> Thank you for reaching out. The SERVICE_ACCESS_DENIED error usually occurs 
> when the developer token is approved for a different product and is used to 
> make the Adwords API/Google Ads API call. Is your developer token approved 
> for App Conversion Tracking and Remarketing API 
>  or some other 
> API instead? You could contact the Compliance Team 
>  to have your developer 
> token approved for the Adwords/Google Ads API. 
>
> Thanks and regards,
> Xiaoming, Google Ads API Team
>
>
>  
>
> ref:_00D1U1174p._5001UZWTBA: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/ee1d6b9d-3894-4cf8-a91f-2b4994ef6877%40googlegroups.com.


RE: API fields issue from adwords API reports

2020-04-14 Thread Google Ads API Forum Advisor Prod
Hi Prashant,

Thank you for reaching out. I am not quite sure what you're referring to with 
some of these so please let me know if I'm misinterpreting anything and provide 
any screenshots/other documentation that would explain what you're trying to 
retrieve.

Inline_click_links: If you are referring to the number of clicks, please see 
here for all reports that support this metric.
Spend: If you're referring to cost, you can see here for all reports that 
support this metric.
Ad_item_number: If you are referring to the ID of the ads, you can get the Id 
from the Ad Performance Report
campaign_item_number: If you're referring to the ID of the campaign, you can 
get the CampaignId from the Campaign Performance Report.

There is no tactic_item_number field is currently not available in the Adwords 
API. Can you please provide more information or share a screenshot about the 
field so I can see if there is something equivalent?

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UZXtYi: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/GUgr50Q8SEBC00J-dtZFZnTtKtPcdfEPjZiw%40sfdc.net.


Re: BID_GOAL_PERFORMANCE_REPORT: Field "type" can have "--" ?!

2020-04-14 Thread Zweitze
Thank you!
So the docs of that report were not updated after the change. That makes 
sense as I found some errors on those docs myself - let me know if you're 
interested.

On a somewhat related note, what is the scope of uniqueness of a 
BidStrategy ID? It's missing in the docs on Object ID Uniqueness 

.

Thanks!


On Friday, April 10, 2020 at 7:28:05 PM UTC+2, adsapiforumadvisor wrote:
>
> Hi Zweitze,
>
> Thank you for reaching out. As explained in this blog post 
> ,
>  Target 
> impression share bidding strategy type is not supported in AdWords API so 
> it is expected that you would get a "--" response for the bidding strategy 
> and other associated attributes for that bid goal.
>
> Regards,
> Mitchell
> Google Ads API Team
>
> ref:_00D1U1174p._5001UZXK9s: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/d0232da1-87d1-41cd-86fb-aad9f2ecbdcb%40googlegroups.com.


RE: How should I get the list of Google merchant account linked with Google Client account?

2020-04-14 Thread Google Ads API Forum Advisor Prod
Hi Ankit,

In Google Ads API, the MerchantCenterLinkService will list you the Merchant 
Center accounts linked to your Google Ads account. You can find a guide on how 
to use it here.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001UZXkyq: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/6__sf0Q8SAZ9001-Y-rDatTPeDeI8B30aU3A%40sfdc.net.


Re: Mobile OS Version

2020-04-14 Thread Google Ads API Forum Advisor Prod
Hi Sreenu,

You can use fields from the operating_system_version_constant such as 
operating_system_version_constant.id or operating_system_version_constant.name. 
If you are still facing null values, you can reply privately to author your 
report request and response so I can take a closer look.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001UZXmFE: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/9m9Iy0Q8S7YO00Z0SmkzgHS1KKg9x51J3QTA%40sfdc.net.


RE: get AD_PERFORMANCE_REPORT return empty data

2020-04-14 Thread Google Ads API Forum Advisor Prod
Hi,

Thank you for reaching out. With regards to your concern about getting an empty 
result from the Ad Performance Report, this is due to all of your campaigns 
being App campaigns in the accounts you mentioned. Unfortunately, the Ad 
Performance Report and  Adgroup Performance Report don't support app campaigns. 
You may refer to this guide for the list of the supported reports for app 
campaigns in Adwords API.

Please let me know if you have any further questions.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UZXt10: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/zCfLp0Q8S7RP00x8xImlzmQ1KyHV5Mx6V3OQ%40sfdc.net.


Re: which api i should use to add google dynamic remarketing campaign ads label filter?

2020-04-14 Thread Google Ads API Forum Advisor Prod
Hi,

Unfortunately, I cannot give timelines to if and when features will be 
available. To get announcements and updates for the API, you can follow our 
blog.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001UZXlGS: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/QUdqy0Q8S7PT00y3bdg-9HTOGR4osgBSC-KA%40sfdc.net.


Can't find ‘AdWords API Center’ in the account settings of my Manager account on Goofle Adwords

2020-04-14 Thread 'Abhishek Gupta' via AdWords API and Google Ads API Forum
I had applied for a developer token to use the Adwords API. Got a reply 
from Google with the following instructions:

Account Details:
Log in to your My Client Center (MCC) account at https://adwords.google.com. 
Click on the Settings gear, then 'Account settings'. Here, you'll find a 
link to your ‘AdWords API Center.’ This page contains your approved 
Developer Token and your developer contact information.


However, I can't see the  ‘AdWords API Center’ tab in my account settings. 
Attached screenshot of my account settings page for reference. Please help!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7a1de7ca-053e-4d4e-b5e2-4cc38a5f7fa8%40googlegroups.com.


TrafficEstimatorService requests max amount and operation count or batch of keywords

2020-04-14 Thread yair viner


Hi 
?can you please tell me what is the maximum amount of keywords that i can 
send to the TrafficEstimatorService at a given time
?also i i send 10 keywords in one request does it count as 1 operation or 
10 operation for the daily limit

Thank you

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

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ac44efdf-f231-45b5-8fd4-785f01a8e187%40googlegroups.com.


Re: How should I get the list of Google merchant account linked with Google Client account?

2020-04-14 Thread Ankit Agarwal
Is there any API endpoint available, which can list linked merchant center 
account with the user client accounts?
If yes then while creating shopping ads I will be able to list Merchant 
accounts to my users.

On Monday, April 13, 2020 at 3:27:01 PM UTC+5:30, Ankit Agarwal wrote:
>
> [image: merchant_account_listing.png]
>
> *scenario*: Suppose a user is creating her first shopping campaign 
> through my Google Ads software then she needs to select her google merchant 
> account to create a shopping ad.
>
> *the real question*: How should I get the list of Google merchant account 
> linked with Google Client account?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/4a0dc114-246c-4e21-872f-7d367c7066b8%40googlegroups.com.


Google Ads API: cannot filter by a field which is not in select

2020-04-14 Thread hiromi hishida
Hi, 

I met a error while migrating our reporting feature.

error:
The following field must be present in SELECT clause: 
'segments.ad_network_type'.

GAQL: 
SELECT 
customer.descriptive_name,segments.year,segments.month,segments.date,metrics.content_impression_share,metrics.content_budget_lost_impression_share,metrics.content_rank_lost_impression_share,metrics.impressions,metrics.clicks,metrics.cost_micros,metrics.conversions,metrics.all_conversions,metrics.view_through_conversions,metrics.conversions_value,metrics.all_conversions_value,metrics.ctr,metrics.conversions_from_interactions_rate,metrics.all_conversions_from_interactions_rate,metrics.average_cpv,metrics.average_cpc,metrics.cost_per_conversion,metrics.cost_per_all_conversions,metrics.video_views,metrics.video_view_rate,customer.currency_code,customer.time_zone,metrics.active_view_cpm,metrics.active_view_ctr,metrics.active_view_impressions,metrics.active_view_measurability,metrics.active_view_measurable_cost_micros,metrics.active_view_measurable_impressions,metrics.active_view_viewability,metrics.average_cost,metrics.average_cpe,metrics.average_cpm,metrics.cross_device_conversions,metrics.engagement_rate,metrics.engagements,customer.id,metrics.interaction_rate,metrics.interactions,metrics.interaction_event_types,metrics.invalid_click_rate,metrics.invalid_clicks,customer.auto_tagging_enabled,customer.test_account,segments.quarter,metrics.value_per_all_conversions,metrics.value_per_conversion
 
FROM customer WHERE segments.ad_network_type IN 
("CONTENT","YOUTUBE_SEARCH","YOUTUBE_WATCH","MIXED") AND segments.date 
BETWEEN '2020-04-01' AND '2020-04-05'

in AdWords API, the same request is OK.
ReportDefinition:
 
AccountDescriptiveNameYearMonthDateContentImpressionShareContentBudgetLostImpressionShareContentRankLostImpressionShareImpressionsClicksCostConversionsAllConversionsViewThroughConversionsConversionValueAllConversionValueCtrConversionRateAllConversionRateAverageCpvAverageCpcCostPerConversionCostPerAllConversionVideoViewsVideoViewRateAccountCurrencyCodeAccountTimeZoneActiveViewCpmActiveViewCtrActiveViewImpressionsActiveViewMeasurabilityActiveViewMeasurableCostActiveViewMeasurableImpressionsActiveViewViewabilityAverageCostAverageCpeAverageCpmCrossDeviceConversionsCustomerDescriptiveNameEngagementRateEngagementsExternalCustomerIdInteractionRateInteractionsInteractionTypesInvalidClickRateInvalidClicksIsAutoTaggingEnabledIsTestAccountMonthOfYearQuarterValuePerAllConversionValuePerConversionAdNetworkType1INCONTENTYOUTUBE_SEARCHYOUTUBE_WATCHMIXED2020040120200405***ACCOUNT_PERFORMANCE_REPORTCUSTOM_DATETSV


Can I do the same query as AdWords 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/cd05c7e4-f99f-4586-8ba3-63adf0d83a72%40googlegroups.com.


Re: Always hit the RateExceededError

2020-04-14 Thread Zafar Kaxarov

Hi, Bryan! Thank you for reply. 

I had read about account and developer token limits. But in first photo, 
you can see than during 30 days throught my developer token made 1,166 
requests. But I should hit Operations Per Day error when I make more than 
1,000 requests per day.
There is also another problem, when I hit this error, I save $error->
getRetryAfterSeconds() and not making request untill this time (usually it 
is 24 hours). After this time(24 hours) I continue making request to Ads 
API and hit the same error and must wait 24 hours again. And this is the 
circle which lasts continuosly. 

Please help me, how can I fix the error.

Thank you, 
Zafar Kakharov. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/fac70898-6ccc-4210-a66e-825fd2ccbfaf%40googlegroups.com.


Re: Upload offline conversions using test account

2020-04-14 Thread Priya Chetwani
Ok thank you for the help. I have signup for a production account and added 
one ad. Now APIs working fine.

On Tuesday, April 14, 2020 at 12:14:04 AM UTC+5:30, adsapiforumadvisor 
wrote:
>
> Hi Priya,
>
> Thank you for reaching out to us. Unfortunately it is currently not 
> possible to test the conversions using test accounts as they do not serve 
> ads. You need to have a production account for this functionality. Please 
> refer to this 
>  
> guide 
> for uploading conversions via API. Let me know if you have further 
> questions.
>
> Thank you,
> Bryan, Google Ads API Team
>
> ref:_00D1U1174p._5001UZXXYk: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/0787f842-33bb-45ea-b756-a3a70b73240e%40googlegroups.com.