API & automation
Integrations
Connect Slack, Discord, Datadog, or GitHub and org events fan out to them automatically — no glue code.
Integrations are managed providers that receive your org events. Connect one and the same event bus that powers webhooks fans out to it — no endpoint or signature handling on your side.
Connect a provider
Section titled “Connect a provider”From the Integrations page, or:
curl -X POST https://cloud.backlex.com/api/org/<org>/integrations \ -H "Authorization: Bearer pak_..." \ -H "Content-Type: application/json" \ -d '{"kind":"slack","config":{"webhookUrl":"https://hooks.slack.com/services/..."}}'Supported providers
Section titled “Supported providers”| Provider | config |
|---|---|
slack | webhookUrl (incoming webhook) |
discord | webhookUrl |
datadog | apiKey (+ optional site, e.g. datadoghq.eu) |
github | token + repo — fires a repository_dispatch |
Slack/Discord post a formatted message per event; Datadog sends events to your dashboard; GitHub dispatches a repository_dispatch you can hook in Actions.
Manage
Section titled “Manage”Disconnect from the UI or DELETE /api/org/<org>/integrations/<id>. Everything is also available via the MCP integrations.* tools. Connecting and disconnecting requires the admin role.