Hi,
to migrate from Google AdWords, I am trying to get the same information using Ads API.
I need to get the same structure that was used by of
https://developers.google.com/adwords/api/docs/appendix/reports/adgroup-performance-report and I set a query like this:
"SELECT
customer.id,segments.date,
campaign.id,
ad_group.id,segments.device,metrics.impressions,metrics.clicks,metrics.cost_micros,metrics.conversions,metrics.top_impression_percentage FROM ad_group WHERE segments.date BETWEEN 'yyyy-mm-dd' AND ' yyyy-mm-dd '" that cover what I need.
I test the result using
https://googleads.googleapis.com/v9/customers/MYCUSTOMEID/googleAds:search.
I need to use my admin customer id but i can't because you receive "Metrics cannot be requested for a manager account. To retrieve metrics, issue separate requests against each client account under the manager account".
I have more than 300+ client account, I can't call 300times the api...
Exists another way using REST to obtain the result?