You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Blake Niemyjski edited this page Oct 10, 2019
·
4 revisions
Integrations
Go to Admin - Projects - Edit - Integrations - Add Web Hook
Enter a URL for your integration and an event for which it should fire.
When selected event types happen, a POST request will be submitted with either an event data or a stack data (depending on selected event types) in json format.
Below is a sample MVC Controller implementation of how you could consume this data. Your implementation will obviously vary based on your development stack.
[HttpPost]
public void Integration()
{
Stream request = Request.InputStream;
request.Seek(0, System.IO.SeekOrigin.Begin);
string json = new StreamReader(request).ReadToEnd();
}