- Overview
- Getting Started
- Managing Stacks
- Manual Stacking
- Filtering & Searching
- Bulk Actions
- Project Settings
- Versioning
- Reference Ids
- User Sessions
- Notifications
- Log Levels
- Event De-Duplication
- Integrations
- FAQ
- Comparison
- Security
- API Usage
- Clients
- Self Hosting
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.
Here's a sample of the data that will be posted.
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();
}