Does anyone have a library of the AdWords scripts conditions, parameters, etc?
You get some of it in the sample scripts like:
var keywordsToLower = AdWordsApp.keywords()
//.withCondition('Ctr > 0.01')
.withCondition('AveragePosition < ' + (TARGET_AVERAGE_POSITION - TOLERANCE))
.withCondition('Status = ENABLED')
.orderBy('AveragePosition DESC')
.forDateRange('LAST_7_DAYS')
.get();
while (keywordsToLower.hasNext()) {
var keyword = keywordsToLower.next();
keyword.setMaxCpc(keyword.getMaxCpc() / BID_ADJUSTMENT_COEFFICIENT);
}
Does anyone have a complete list of all the options for conditions/parameters/etc that can be referenced for making customizations to the sample scripts or creating custom scripts form scratch?