I want to create API reports that show data from each account that I manage (using a Manager account).
For example, show the number of clicks that each account got in the last 30 days.
This is pretty easy in the UI and a very common use case, so I assume it should be easy too to do with the API.
I'm using
Customer_client for other stuff, but it doesn't let me request that kind of metrics from each account.
Is there a way to get data/metrics from all the managed accounts with just 1 API request?
Or do I have to send 1 API request for each managed account (using with a loop connected to
Customer_client or something like that to get all the managed accounts automatically)?
Is there any example of how to do this? (I'm using Python, but any example would help).
Thanks!