Available today: Confluence, WooCommerce, Shopify, Salesforce knowledge sync, Slack handoff, signed webhooks, and developer APIs. Everything else on this page is clearly marked.
6
Connector or platform capability already implemented.
4
Not in the current runtime yet, so it stays labeled that way.
Headless API + webhooks
Use `/api/headless/query`, `/api/retrain`, and signed webhook fanout.
Sync Confluence Cloud spaces and pages into your knowledge base with test and manual sync controls.
Sync Salesforce knowledge articles, cases, and optional account records into the knowledge base.
Sync active Shopify products, collections, and store pages into your support knowledge base.
Send human handoff alerts to Slack through an incoming webhook configured in workspace settings.
Deliver signed outbound webhook events for chat escalations and lead capture to your own endpoint.
Sync published WooCommerce products and product categories into the knowledge base.
Planned Messenger integration for Intercom inbox and handoff workflows.
This is not implemented in the current product yet.
Planned connector for syncing selected Notion pages and databases into the knowledge base.
This is not implemented in the current product yet.
Planned first-class WordPress connector beyond generic URL crawling.
This is not implemented in the current product yet.
Planned support connector for help center sync and ticket-centric workflows.
This is not implemented in the current product yet.
DuDiBa already covers knowledge sync from real content systems, human handoff routing to Slack, and custom automation through signed webhooks and APIs.
Need something custom right now? Use the headless query API, async retrain API, and signed webhook fanout to connect DuDiBa to your own applications without waiting on a marketplace connector.
const response = await fetch("https://your-domain.com/api/headless/query", { method: "POST", headers: { "Content-Type": "application/json", "Authorization": "Bearer dudiba_headless_key_..." }, body: JSON.stringify({ workspace_id: "workspace-uuid", query: "How do I reset my password?" }) }); const data = await response.json(); console.log(data.answer);
Start with the integrations and APIs that already ship, then add the marketplace connectors you want as they land.