Kevin,
Thanks for the response but I tried this and I get an error. I ran the simple script below:
function main() {
var campaignsIterator = AdWordsApp.campaigns()
.withCondition("Name IN ['Marketing']")
.get();
while (campaignsIterator.hasNext()) {
var thisCampaign = campaignsIterator.next();
thisCampaign.setBudget(65);
}
}
and I get the following error:
Error: Cannot edit shared budget.
Attempted new value: $65.00
Any idea what I'm doing wrong?
Thanks,
Greg