You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/sim/content/blog/enterprise/index.mdx
+40-12Lines changed: 40 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,23 +1,23 @@
1
1
---
2
2
slug: enterprise
3
3
title: 'Build with Sim for Enterprise'
4
-
description: 'Access control, BYOK, self-hosted deployments, on-prem Copilot, SSO & SAML, whitelabeling, and flexible data retention—enterprise features for teams with strict security and compliance requirements.'
4
+
description: 'Access control, BYOK, self-hosted deployments, on-prem Copilot, SSO & SAML, whitelabeling, Admin API, and flexible data retention—enterprise features for teams with strict security and compliance requirements.'
We've been working with security teams at larger organizations to bring Sim into environments with strict compliance and data handling requirements. This post covers the enterprise capabilities we've built: granular access control, bring-your-own-keys, self-hosted deployments, on-prem Copilot, SSO & SAML, whitelabeling, and compliance.
20
+
We've been working with security teams at larger organizations to bring Sim into environments with strict compliance and data handling requirements. This post covers the enterprise capabilities we've built: granular access control, bring-your-own-keys, self-hosted deployments, on-prem Copilot, SSO & SAML, whitelabeling, compliance, and programmatic management via the Admin API.
21
21
22
22
## Access Control
23
23
@@ -45,8 +45,8 @@ Restrict which workflow blocks appear in the editor. Disable the HTTP block to p
45
45
46
46
Control access to platform capabilities per permission group:
Run Sim entirely on your infrastructure. Deploy with Docker Compose or Helm charts for Kubernetes—the application, WebSocket server, and PostgreSQL database all stay within your network.
75
+
Run Sim entirely on your infrastructure. Deploy with [Docker Compose](https://docs.sim.ai/self-hosting/docker) or [Helm charts](https://docs.sim.ai/self-hosting/kubernetes) for Kubernetes—the application, WebSocket server, and PostgreSQL database all stay within your network.
76
76
77
77
**Single-node** — Docker Compose setup for smaller teams getting started.
78
78
79
79
**High availability** — Multi-replica Kubernetes deployments with horizontal pod autoscaling.
80
80
81
-
**Air-gapped** — No external network access required. Pair with Ollama or vLLM for local model inference.
81
+
**Air-gapped** — No external network access required. Pair with [Ollama](https://docs.sim.ai/self-hosting/ollama) or [vLLM](https://docs.sim.ai/self-hosting/vllm) for local model inference.
82
82
83
83
Enterprise features like access control, SSO, and organization management are enabled through environment variables—no connection to our billing infrastructure required.
84
84
@@ -98,7 +98,7 @@ This is particularly relevant for organizations where the context Copilot needs
98
98
99
99

100
100
101
-
Integrate with your existing identity provider through SAML 2.0 or OIDC. We support Okta, Azure AD (Entra ID), Google Workspace, OneLogin, and any compliant identity provider.
101
+
Integrate with your existing identity provider through SAML 2.0 or OIDC. We support Okta, Azure AD (Entra ID), Google Workspace, OneLogin, Auth0, JumpCloud, Ping Identity, ADFS, and any compliant identity provider.
102
102
103
103
Once enabled, users authenticate through your IdP instead of Sim credentials. Your MFA policies apply automatically. Session management ties to your IdP—logout there terminates Sim sessions. Account deprovisioning immediately revokes access.
104
104
@@ -130,8 +130,6 @@ This is useful for internal platforms, customer-facing deployments, or any scena
130
130
131
131
Sim maintains **SOC 2 Type II** certification with annual audits covering security, availability, and confidentiality controls. We share our SOC 2 report directly with prospective customers under NDA.
132
132
133
-
**GDPR** — Data Processing Agreements available for organizations handling EU personal data.
134
-
135
133
**HIPAA** — Business Associate Agreements available for healthcare organizations. Requires self-hosted deployment or dedicated infrastructure.
136
134
137
135
**Data Retention** — Configure how long workflow execution traces, inputs, and outputs are stored before automatic deletion. We work with enterprise customers to set retention policies that match their compliance requirements.
@@ -140,6 +138,36 @@ We provide penetration test reports, architecture documentation, and completed s
140
138
141
139
---
142
140
141
+
## Admin API
142
+
143
+
Manage Sim programmatically through the Admin API. Every operation available in the UI has a corresponding API endpoint, enabling infrastructure-as-code workflows and integration with your existing tooling.
144
+
145
+
**User & Organization Management** — Provision users, create organizations, assign roles, and manage team membership. Integrate with your HR systems to automatically onboard and offboard employees.
146
+
147
+
**Workspace Administration** — Create workspaces, configure settings, and manage access. Useful for setting up isolated environments for different teams or clients.
148
+
149
+
**Workflow Lifecycle** — Deploy, undeploy, and manage workflow versions programmatically. Build CI/CD pipelines that promote workflows from development to staging to production.
150
+
151
+
The API uses standard REST conventions with JSON payloads. Authentication is via API keys scoped to your organization.
152
+
153
+
---
154
+
155
+
## Import & Export
156
+
157
+
Move workflows between environments, create backups, and maintain version control inside or outside of Sim.
158
+
159
+
**Workflow Export** — Export individual workflows or entire folders as JSON. The export includes block configurations, connections, environment variable references, and metadata. Use this to back up critical workflows or move them between Sim instances.
160
+
161
+
**Workspace Export** — Export an entire workspace as a ZIP archive containing all workflows, folder structure, and configuration. Useful for disaster recovery or migrating to a self-hosted deployment.
162
+
163
+
**Import** — Import workflows into any workspace. Sim handles ID remapping and validates the structure before import. This enables workflow templates, sharing between teams, and restoring from backups.
164
+
165
+
**Version History** — Each deployment creates a version snapshot. Roll back to previous versions if a deployment causes issues. The Admin API exposes version history for integration with your change management processes.
166
+
167
+
For teams practicing GitOps, export workflows to your repository and use the Admin API to deploy from CI/CD pipelines.
168
+
169
+
---
170
+
143
171
## Get Started
144
172
145
173
Enterprise features are available now. Check out our [self-hosting](https://docs.sim.ai/self-hosting) and [enterprise](https://docs.sim.ai/enterprise) docs to get started.
0 commit comments