> ## Documentation Index
> Fetch the complete documentation index at: https://docs.testdino.com/llms.txt
> Use this file to discover all available pages before exploring further.

# TestDino Organizations Overview

> Create, switch, and manage TestDino organizations.

export const VideoSchema = ({name, description, thumbnailUrl, uploadDate, duration, contentUrl, embedUrl}) => {
  const schema = {
    "@context": "https://schema.org",
    "@type": "VideoObject",
    name,
    description,
    thumbnailUrl,
    uploadDate,
    ...duration ? {
      duration
    } : {},
    ...contentUrl ? {
      contentUrl
    } : {},
    ...embedUrl ? {
      embedUrl
    } : {},
    publisher: {
      "@type": "Organization",
      name: "TestDino",
      logo: {
        "@type": "ImageObject",
        url: "https://docs.testdino.com/logo/light.svg"
      }
    }
  };
  return <script type="application/ld+json" dangerouslySetInnerHTML={{
    __html: JSON.stringify(schema)
  }} />;
};

<VideoSchema name="TestDino Organizations Overview" description="How to create, switch, and manage TestDino organizations, and where work, billing, users, and projects live." thumbnailUrl="https://testdinostr.blob.core.windows.net/docs/posters/docs__organization__organization.jpg" uploadDate="2026-04-23T00:00:00+00:00" contentUrl="https://testdinostr.blob.core.windows.net/docs/docs/organization/organization.mp4" embedUrl="https://docs.testdino.com/platform/organizations/overview" />

<Callout icon="book-open" color="#3B82F6">
  **What you’ll learn**

  * How to create and switch between organizations
  * Where work, billing, users, and projects live
  * How to set up your first project
</Callout>

Organizations group all work, billing, users, and projects in one place. Select the correct organization to see the right projects, members, and settings.

<video controls loop preload="metadata" aria-label="Creating, switching, and managing TestDino organizations" poster="https://testdinostr.blob.core.windows.net/docs/posters/docs__organization__organization.jpg" src="https://testdinostr.blob.core.windows.net/docs/docs/organization/organization.mp4" />

## Get Started

1. **Create an organization**
   * Click **Add Organization** and enter the name, description, and website
   * Select **Create**.

2. **Open or switch organization**.

   Click an organization name in the list to enter its workspace

3. **Create your first project.**

   In the organization workspace, go to **Projects** and follow the given steps.
