Forum Moderators: buckworks & skibum

Message Too Old, No Replies

AdWords Scripts Library

         

dougmcc1

11:13 pm on Nov 13, 2015 (gmt 0)

10+ Year Member



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?

buckworks

11:39 pm on Nov 13, 2015 (gmt 0)

WebmasterWorld Administrator 10+ Year Member Top Contributors Of The Month



Is there anything helpful in here?

[developers.google.com...]

dougmcc1

11:43 pm on Nov 13, 2015 (gmt 0)

10+ Year Member



I found these pages to be the most helpful so far:
[developers.google.com...]
[developers.google.com...]
[developers.google.com...]

I'm moreso looking for something more user friendly that someone might have constructed in this format:

Keyword objects: getMaxCpc(), setMaxCpc(), etc.
.withCondition parameters: AveragePosition, Status, etc.
.forDateRange parameters: LAST_7_DAYS, YESTERDAY, etc. (case sensitive)