Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iaindooley/43900ae32bc30f3b94a73e546395bfc5 to your computer and use it in GitHub Desktop.
Save iaindooley/43900ae32bc30f3b94a73e546395bfc5 to your computer and use it in GitHub Desktop.
Log webhooks
function logWebhooks()
{
var token = "YOUR API TOKEN";//token, not key, from the Configuration tab
  new IterableCollection(TrelloApi.get('token/'+token+'/webhooks'))
  .each(function(webhook)
{   
Logger.log(webhook.callbackURL);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment