Kindly explain question 1 by replacing 10,000,000 by 100,000 and 10,000. 

For your understanding question will be modified to this

1. for 100,000 keywords

*1. I am trying to understand things on the following page*

https://developers.google.com/adwords/api/docs/ratesheet#api-operations

If I ran the following query 

query = """
    SELECT
      ad_group_criterion.cpc_bid_micros,
      ad_group_criterion.keyword.text,
      ad_group_criterion.keyword.match_type,
      ad_group_criterion_label.label,
      campaign.name


    FROM keyword_view
    
    WHERE ad_group_criterion.type = KEYWORD
    AND campaign.name= 'XXXXXXX XXX XXX'
    """

It returns 100,000 keywords data. Does that mean it will be counted as 1 
operation or 100,000?


----------------------------------------------------------------------------------------------------------------------------------------

1. for 10,000 keywords

*1. I am trying to understand things on the following page*

https://developers.google.com/adwords/api/docs/ratesheet#api-operations

If I ran the following query 

query = """
    SELECT
      ad_group_criterion.cpc_bid_micros,
      ad_group_criterion.keyword.text,
      ad_group_criterion.keyword.match_type,
      ad_group_criterion_label.label,
      campaign.name


    FROM keyword_view
    
    WHERE ad_group_criterion.type = KEYWORD
    AND campaign.name= 'XXXXXXX XXX XXX'
    """

It returns 10,000 keywords data. Does that mean it will be counted as 1 
operation or 10,000?

On Monday, 12 October, 2020 at 11:46:20 am UTC+5:30 adsapiforumadvisor 
wrote:

> Hi Harshad,
>
> Thanks for posting your concern.
>
> Could you clarify first if your concern is related to Google Ads API 
> <https://developers.google.com/google-ads/api/docs/start> or AdWords API 
> <https://developers.google.com/adwords/api/docs/guides/start>? I asked 
> this because the report you have specified in #1 item is for Google Ads API 
> but the document you've provided is for AdWords API. If your concern is 
> related to Google Ads API, then this is the document 
> <https://developers.google.com/google-ads/api/docs/rate-sheet> that you 
> should referring.
>
> For now, since your code and report is based on Google Ads API, let me 
> provide support on Google Ads API perspective as well.
>
> Please find my answer below for each question:
>
> *1. It returns 1,000,000+ keywords data. Does that mean it will be counted 
> as 1 operation or 1,000,000+? -*Reports would currently not be able to 
> return 1,000,000 records at a time. Report sizes may be only up to 100,000 
> rows as discussed here 
> <https://developers.google.com/google-ads/api/docs/reporting/streaming#search_vs_searchstream>
> .
>
> As additional information, please note that if page_size 
> <https://developers.google.com/google-ads/api/reference/rpc/v5/SearchGoogleAdsRequest#page_size>
>  is 
> not specified, it is automatically set to the maximum page size of 10,000 
> rows as discussed here 
> <https://developers.google.com/google-ads/api/docs/reporting/paging>. 
> Also, as discussed in our best concepts guide for retrieving objects 
> <https://developers.google.com/google-ads/api/docs/concepts/retrieving-objects>,
>  
> the recommendation would be to limit the number of objects returned.
>
> You may check out our paging 
> <https://developers.google.com/google-ads/api/docs/reporting/paging> guide 
> and the rest of our streaming 
> <https://developers.google.com/google-ads/api/docs/reporting/streaming> guide 
> for the best reporting options you can implement that would fit your 
> requirement. 
>
>
> *2. As it's mentioned in the above link that daily limit for operation is 
> 10,000. If I try to execute code which performs more than 10,000 
> operations(mutate), *
> -The daily operation limit for developer token with Basic access/Test 
> account is 15,000 for Google Ads API. If you will perform more than 15,000 
> operations, then you will encounter the RESOURCE_EXHAUSTED 
> <https://developers.google.com/google-ads/api/reference/rpc/v5/QuotaErrorEnum.QuotaError#resource_exhausted>
>  quota error.
>
>
>
> *3. For following code I am trying to change Max CPC of three keywords, 
> will it be counted as 3 operations and I will be charged for three 
> operations OR it will be treated as 1 operation*
> -This will count as 3 operations.
>
> Let me know if you have further questions.
>
> Regards,
> [image: Google Logo] 
> Ernie John Blanca Tacata 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q268PDJ: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/46581e76-4bf7-4809-8b89-63f25592b8c5n%40googlegroups.com.

Reply via email to