EventSource Integration - Configuration Docs
To configure the EventSource integration, you'll need:
Parameter | Type | Required(*) | Description |
---|---|---|---|
source | string | * |
Example
{
"source": "backend"
}
Configure via Dashboard
The easiest way to configure this integration is through the MagicBell dashboard:
- Log in to your MagicBell dashboard.
- Navigate to Settings > Integrations.
- Find and click on this integration.
- Follow the on-screen instructions to complete the configuration.

MagicBell Dashboard: Integration Configuration
Configure via API
You can also configure the integration using the API
Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"source": {
"type": "string"
}
},
"required": [
"source"
],
"type": "object"
}