Hi @harsmarvania57 ,
I am adding a webhook url http://myhosting.com/splunk_alert and I want to get the result from alert payload. I have nodejs api where I am listing to the post request
app.post('/splunk_alert', function(request, response){
console.log(request.body); // your JSON
response.send(request.body); // echo the result back
});
Am I getting this correct? is this how I can get the result from the request body from the splunk alert?
Thanks,
Nitin
... View more