Re: customer not enabled error

2021-10-21 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hello, The parital_failure field is only available for mutate methods. In general, it's recommended that get requests are not used in a production environment, as there is a 1,000 request limit for all access types. You can read more on inspecting objects here. The GoogleAdsService Search and S

Re: customer not enabled error

2021-10-20 Thread 'INI GlobalOps' via AdWords API and Google Ads API Forum
Thanks Matt - follow up question - the docs you linked state that partial_failure method isn't available for get requests - Is there something we can use for get requests? That's all we are doing is get requests - getting a daily list of accounts, then their ad performance reports like this: d

RE: customer not enabled error

2021-10-14 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hello, Thanks for reaching out. The best way to handle this scenario is to enable partial failure. Setting partialFailure to true will allow you to handle failed operations separately at the end without abruptly ending your request. Regards, Matt Google Ads API Team Matt Google Ads API Team re

customer not enabled error

2021-10-13 Thread 'INI GlobalOps' via AdWords API and Google Ads API Forum
Hi, we when generating reports by iterating over a list of customers, sometimes we get an error when a customer is not enabled which stops the process. What is the best way or endpoint to check for that? So we can implement code like this if customer.is_enabled == False then skip Thank you!