Skip to content

Instantly share code, notes, and snippets.

@daniel-c05
Created August 3, 2014 04:26
Show Gist options
  • Save daniel-c05/4cb304df50ea3df842c4 to your computer and use it in GitHub Desktop.
Save daniel-c05/4cb304df50ea3df842c4 to your computer and use it in GitHub Desktop.
Filter MCC Accounts by Label
var LABEL = "Your_label";
function main () {
var accountIterator = MccApp.accounts()
.withCondition("LabelNames CONTAINS '" + LABEL + "'")
.get();
Logger.log("Total Number of accounts under label (via totalNumEntities): "
+ accountIterator.totalNumEntities());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment