Teams Channel Provider
Configuration
To configure the Teams integration, you'll need the following data:
| Parameter | Type | Description |
|---|
In the Dashboard
The easiest way to configure this integration is through the MagicBell dashboard:
- Log in to your MagicBell dashboard.
- Navigate to Channels.
- Find and click on this channel name in the sidebar.
- Click the Configure Teams button.
- Follow the on-screen instructions to complete the configuration.

Using the API
You can also configure the integration using the API.
Example payload:
{
"teams": {}
}
Channel Token
The channel token contains all the information (along with the config) necessary to deliver the notification on the Teams channel.
| Parameter | Type | Description |
|---|---|---|
| webhook | object | |
| └ url | string |
Example
{}Schema
{
"properties": {
"webhook": {
"properties": {
"url": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}