Skip to main content

Connect UI Documentation

Connect UI is Unizo's pre-built interface that enables your users to seamlessly authenticate and connect with third-party services without any frontend development on your part.

What is Connect UI?

Connect UI is a secure, embeddable interface that:

  • Handles authentication complexity - OAuth 2.0, API keys, and other auth methods
  • Provides a consistent UX - Same experience across all providers
  • Manages credentials securely - No credential handling in your code
  • Supports multiple categories - SCM, Ticketing, Communications, and more

Quick Start

// 1. Generate a service key
const response = await fetch('https://app.unizo.ai/api/v1/serviceKeys', {
method: 'POST',
headers: {
'apikey': 'YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"type": "INTEGRATION_TOKEN",
"name": "my-integration",
"subOrganization": {
"name": "Customer Name",
"externalKey": "customer-123"
},
"integration": {
"type": "GENERIC",
"target": {
"type": "Category",
"categorySelectors": [
{ "type": "SCM" }
]
}
}
})
});

const { serviceKey } = await response.json();

// 2. Embed the UI
document.getElementById('connect-container').innerHTML = `
<iframe
src="https://dock.unizo.ai/links/${serviceKey}"
style="width: 100%; height: 600px; border: none;"
/>
`;

Documentation Structure

Use Cases

SaaS Applications

Embed Connect UI in your settings page to let customers connect their tools:

  • Version control (GitHub, GitLab)
  • Project management (Jira, Linear)
  • Communication (Slack, Discord)

Internal Tools

Use Connect UI for employee onboarding:

  • Connect development tools
  • Set up monitoring integrations
  • Configure communication channels

Developer Platforms

Integrate Connect UI in your developer dashboard:

  • Enable CI/CD integrations
  • Connect code repositories
  • Set up deployment targets

Why Choose Connect UI?

FeatureBenefit
Zero Frontend DevelopmentShip integrations faster without building auth flows
Provider UpdatesAutomatically get updates when providers change
Security ComplianceBuilt with enterprise security standards
Responsive DesignWorks on all devices out of the box
Error HandlingGraceful error messages and retry mechanisms

Next Steps

Ready to integrate Connect UI? Start with our Integration Guide for step-by-step instructions.