Hi @stefan,
Assuming your webhook is configured properly and you are using express with node.js, your webhook handler would look something like this:
app.post('/webhooks/twitter', function(request, response) {
console.log(request.body)
response.send('200 OK');
});
request.body being the incoming JSON POST body.