I'm trying to set up a nodejs server to make some sync between Podio and Trello. My problem is that when I update Podio through their api, the webhook gets triggered even if I've request for the hook not to be triggered.
I'm using the module: node-podio-api
example call, which causes an infinite loop:
var authCode = result.auth;
var options = { auth: authCode,
type: "item",
id: podioId,
hook: false,
body:{value:comment}}
podio.commentsAddCommentToObject(options,function(err,result){
if(err) throw err;
console.log(util.inspect(result, { showHidden: true, depth: null }))
});