ControlAltDieliet

- Home /
- Mattermost /
- Introduction to Integrations
Mattermost Introduction to Integrations - Welcome
This blog
wants to introduce you to all the interaction methods Mattermost offers to developers.
The goal is to work with reallife examples. We hope to inspire you to write your own integrations
We start the blog with a first example. A system is monitoring temperatures and sends warnings to Mattermost.
We will split up this setup in multiple parts.
01. Sending alerts to a channel with an incoming webhook
In this article you learn how to send data to a channel in Mattermost in a very few lines of code using Incoming Webhooks.
Read more...
02.Sending (and receiving) data with an outgoing webhook
In this article you learn how to actively send a request or data to an external source and display the feedback in a channel. We use Outgoing Webhooks for this.
Read more...
03.Requesting data with a slash command
In this article you learn how to request data in a private channel with a slash command.
Read more...
04.Sending data with the Mattermost API
In this article you learn how to send data to a channel with the Mattermost API instead of using an incoming webhook.
Read more...
05.Writing your own plugin for sending and receiving data.
In this article you learn how to create your own plugin for sending and receiving data in Mattermost channels.
Yet to come