MagicBell SlackBot Channel Provider

Configuration

To configure the MagicBell SlackBot integration, you'll need the following data:

required fields are marked with an `*`
ParameterTypeDescription
enabledboolean *

In the Dashboard

The easiest way to configure this integration is through the MagicBell dashboard:

  1. Log in to your MagicBell dashboard.
  2. Navigate to Channels.
  3. Find and click on this channel name in the sidebar.
  4. Click the Configure MagicBell SlackBot button.
  5. Follow the on-screen instructions to complete the configuration.

Using the API

You can also configure the integration using the API.

Example payload:

{
		"enabled": true
	}

Channel Token

The channel token contains all the information (along with the config) necessary to deliver the notification on the MagicBell SlackBot channel.

required fields are marked with an `*`
ParameterTypeDescription
webhookobject Obtained directly from the incoming_webhook object in the installation response from the Slack API.
└ urlstring *
oauthobject
└ installation_idstring *
└ scopestring
└ channel_idstring *

Example

{
  "webhook": {
    "url": "https://example.com/webhook"
  }
}

Schema

{
  "$id": "slackToken",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "oauth": {
      "properties": {
        "channel_id": {
          "type": "string"
        },
        "installation_id": {
          "type": "string"
        },
        "scope": {
          "type": "string"
        }
      },
      "required": [
        "channel_id",
        "installation_id"
      ],
      "type": "object"
    },
    "webhook": {
      "description": "Obtained directly from the incoming_webhook object in the installation response from the Slack API.",
      "properties": {
        "url": {
          "format": "uri",
          "minLength": 1,
          "type": "string"
        }
      },
      "required": [
        "url"
      ],
      "type": "object"
    }
  },
  "type": "object"
}