Hello everyone,

I am trying to build an auditing tool for our MCC account. We have 
approximately 600 accounts under MCC. And to get the data about campaigns I 
have to send a request for every single account as follows 
https://googleads.googleapis.com/v2/customers/' 
. $customerClientId . '/googleAds:search. Also I have to include JSON 
encoded query. That looks like following :
{
"query":"
SELECT

    customer.id,
    campaign.id, 
    campaign.name, 
    campaign.status, 
    campaign.serving_status,  
    campaign.bidding_strategy_type, 
    campaign_budget.amount_micros,
    campaign.start_date,
    campaign.end_date
FROM 
    campaign
WHERE 
    campaign.status=ENABLED 
    AND 
    campaign.serving_status!=ENDED
ORDER BY 

    campaign.id ASC"
}

Is there a way for me in one query response receive campaigns data for 
multiple accounts not just one ?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c1772693-ed17-48e5-9bdd-4d52edb832e5%40googlegroups.com.

Reply via email to