Hi.
I need to sum the spend of every AccountBudget under a manager (which is the Paying manager).
I am able to access them from every customer account over GAQL but I am not abled to access them from the manager account.
The problem with this approach is when the customer account is unlinked from the manager account. In this scenario I wont be able to access the Account Budget of this account right?
I am using this query:
SELECT account_budget.amount_served_micros FROM account_budget
stream = ga_service.search_stream(customer_id=customer_id, query=query)
If "customer_id" has the customer_id, the info is there but is I user the manager_id, instead of getting all Accounts Budget related to its as payment manager, it brings nothing.
Can you help me?