> ## 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

> Create and switch organizations, and manage members, roles, single sign-on, analytics, and billing across every project.

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://tdstorageus.blob.core.windows.net/public/docs/administration/organizations/overview/organization-poster.jpg" uploadDate="2026-04-23T00:00:00+00:00" contentUrl="https://tdstorageus.blob.core.windows.net/public/docs/administration/organizations/overview/organization.mp4" embedUrl="https://docs.testdino.com/platform/organization-overview" />

An organization holds your projects, members, and subscription. Organization settings apply to every project inside it. Most teams set them up once, then revisit as the team grows.

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

## Quick Reference

| Page                                                        | Use it to                                                 |
| :---------------------------------------------------------- | :-------------------------------------------------------- |
| [Projects](/platform/organizations/projects)                | Create projects that isolate test data and keys           |
| [Organization Analytics](/platform/organizations/analytics) | Compare test health across every project                  |
| [Users & Roles](/platform/organizations/users-roles)        | Invite members and assign permissions                     |
| [Settings](/platform/organizations/settings)                | Update the org profile, ownership, and deletion           |
| [Single Sign-On](/platform/organizations/single-sign-on)    | Set up SSO with OIDC, verify domains, and enforce sign-in |
| [Billing & Usage](/platform/billing-and-usage/overview)     | Track usage, manage the subscription, and compare plans   |

## Create and switch organizations

1. **Create an organization.**

   Open the organization switcher and click **New Organization**. Enter an **Organization Name**, then click **Next** and pick your **Team size**.

   On your very first organization, the same dialog also asks for a **Project Name** and creates that project for you.

2. **Open or switch organization.**

   Click an organization name in the switcher to enter its workspace.

3. **Create a project.**

   Go to **Projects** and click **New Project**. See [Projects](/platform/organizations/projects).

## Set up access and billing

New organizations start with one owner. Invite members, assign roles, then connect billing before usage exceeds the free tier.

| Task                         | Page                                                          |
| :--------------------------- | :------------------------------------------------------------ |
| Invite members and set roles | [Users & Roles](/platform/organizations/users-roles)          |
| Connect your IdP for SSO     | [Single Sign-On](/platform/organizations/single-sign-on)      |
| Manage the subscription      | [Billing & Usage](/platform/billing-and-usage/manage-billing) |
| Check usage against limits   | [Billing & Usage](/platform/billing-and-usage/overview)       |

Project-level settings, including API keys and integrations, live in [Project Settings](/platform/project-settings).

## Related

<CardGroup cols={2}>
  <Card title="Projects" icon="folder" href="/platform/organizations/projects">
    Create and manage projects
  </Card>

  <Card title="Billing & Usage" icon="credit-card" href="/platform/billing-and-usage/overview">
    Usage tracking and subscription
  </Card>

  <Card title="Users & Roles" icon="users" href="/platform/organizations/users-roles">
    Invite members and assign permissions
  </Card>

  <Card title="Single Sign-On" icon="shield-halved" href="/platform/organizations/single-sign-on">
    Connect your identity provider with OIDC
  </Card>
</CardGroup>
