Integration patterns

Common ways teams integrate DocsChat. Pick components that match your stack and plan.

E-commerce support bot

Best for: Online stores with product pages and order questions.

ComponentUse
Widget embedChat bubble or iframe on product and checkout pages
REST APIServer-side order lookup before starting a session (custom backend)
WebhooksPush order-status updates into an active chat session

Typical flow: Embed widget on /product/* → user asks about shipping → bot answers from docs → handoff to helpdesk on Standard+ for returns.

SaaS customer success

Best for: In-app help and onboarding.

ComponentUse
Widget embedContextual help widget inside your app (iframe)
REST APIPass user context from your backend when creating sessions
AnalyticsTrack deflection in Admin → Analytics (not a public API yet)

Typical flow: Link iframe to /chat/docs-help from your dashboard → suggested questions guide new users → citations link to your public docs.

Enterprise knowledge base

Best for: Internal workspace support and compliance-sensitive teams.

ComponentUse
REST APICustom internal dashboard or intranet integration
WebhooksSync messages with internal ticketing
SSOStub — configure in Admin → Enterprise; IdP wiring required for production
Audit logsEnterprise — export from Admin → Audit log
HIPAA modeEnterprise stub — enable flag + review docs/SECURITY.md before production

Typical flow: Internal portal calls /api/v1/sessions with API key → employees chat against private doc sources → handoff creates Zendesk ticket with transcript.

Choosing a path

NeedStart here
Fastest web embedWidget embed
Mobile or custom UIREST API integration
External system pushes messagesWebhooks

Related