In my application, I often need to check how many Active campaigns are
running (I need to ensure that I don't bump against the 100 Active
campaign limit).
Today, I need to call CampaignService.getAllAdWordsCampaigns() and
iterate through to count up the number of Active campaigns.
This comes at the expense of Google building up all the campaign
objects and returning them to me just so that I can throw most of that
information away. I don't know what this translates into for API quota
units.
I'd like to request a method like the following:
getAdWordsCampaignCount(CampaignStatus[]) : int[]
Given a set of CampaignStatus values, this method would return the
count for each status as a parallel array. (Or something along those
lines. Personally, I'd be happy with getActiveAdWordCampaignCount() :
int.)
Thanks for any consideration,
j