Skip to main content

Add organization creation to your app

Drop in <CreateOrganization /> to let your users easily create organizations and invite new members.

Create organization
Logo
Upload
Recommended size 1:1, up to 10MB.
Name
Organization name
Slug
my-org
Create organization
Secured by
Org management

Pre-filled and ready to go

Clerk automatically suggests an organization name and logo based on the user's email domain. Users can confirm or customize before creating

Create organization
Logo
Upload
Recommended size 1:1, up to 10MB.
Name
Organization name
Slug
my-org
Create organization
Secured by
Member management

Enable entire team invites

Users can paste a comma-separated list of emails and assign roles in one step.

Invite new members
example@email.com, example@email.com
Role: Member
Member
Admin
Skip
Send invitation
Secured by
Customization

Customizable to your brand

Match the look and feel of your product with full styling control. Override themes, layout, and behaviors to create an account menu that feels native to your app.

  • Theme tokens and CSS overrides
  • Dark mode support
  • Works in both server and client components
Create organization
Logo
acme logo
Upload
Recommended size 1:1, up to 10MB.
Name
Acme
Slug
acme
Create organization
Secured by

Implement create organization in minutes

Drop-in <CreateOrganization />

Build secure, scalable authentication in minutes with Clerk’s SDKs. Drop in pre-built UI components and onboard users instantly, without friction or security concerns.

Clerk API

Custom flows

Want full control over your onboarding experience? Our headless APIs give you the flexibility to build exactly what you need.

import { useOrganizationList } from '@clerk/react'

const { createOrganization, setActive } = useOrganizationList()

// Create a new organization
const org = await createOrganization({ name: 'Acme Inc.' })

// Set it as the active organization
await setActive({ organization: org.id })