Hello, We are using Google Ads API to synchronize data from Google Ads with our database. To do this, we are using multiple queries to get up-to-date data. However, due to the high volume of requests, we are not entirely satisfied with this method. We were wondering if there is a way to retrieve all the data we need with a single request, rather than splitting it into several. We would appreciate it if you could provide us with any information or suggestions on how to achieve this. We're currently using queries to different tables (campaign, label, bidding_strategy, ...) query = ( " select ... FROM campaign WHERE ... " ) response = ga_service.search_stream(customer_id=customer_id, query=query) ... query = ( " select ... FROM label WHERE ... " ) ... Maybe there is a way how we can get all the data in one response or download a file with all data and then process it on our side?Any help or guidance you can provide would be greatly appreciated. Thank you in advance for your time and assistance.Best regards, Rostyslav
-- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 [email protected] To unsubscribe from this group, send email to [email protected] 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/80689c0b-5e91-49b0-9bb4-35e9fc72b30en%40googlegroups.com.
