---
title: "Create Organization"
method: POST
path: "/api/0/organizations/"
---

# Create Organization

`POST /api/0/organizations/`

Create new organization
The first organization on a server is always allowed to be created.
Afterwards, ENABLE_OPEN_USER_REGISTRATION is checked.
Superusers are always allowed to create organizations.

## Request body

- OrganizationInSchema
  - `name` string, required — The name of the organization

## Response `201`

Created

- OrganizationDetailSchema
  - `name` string, required — The name of the organization
  - `id` string, required
  - `dateCreated` string, date-time, required
  - `status` object
  - `avatar` object
  - `isEarlyAdopter` boolean
  - `require2fa` boolean
  - `slug` string, required — The name in all lowercase, suitable for URL identification
  - `isAcceptingEvents` boolean — Used for throttling at org level
  - `eventThrottleRate` integer — Probability (in percent) on how many events are throttled. Used for throttling at project level
  - `projects` ProjectTeamSchema[], required
    - `name` string, required
    - `slug` string, nullable
    - `id` string, required
    - `avatar` object
    - `color` string
    - `features` string[]
    - `hasAccess` boolean
    - `isBookmarked` boolean
    - `isInternal` boolean
    - `isMember` boolean, required
    - `isPublic` boolean
    - `scrubIPAddresses` boolean, required
    - `dateCreated` string, date-time, required
    - `platform` string, nullable
    - `firstEvent` string, date-time, nullable
    - `eventThrottleRate` integer — Probability (in percent) on how many events are throttled. Used for throttling at project level
    - `teams` TeamSlugSchema[], required
      - `id` string, required
      - `slug` string, required
  - `teams` TeamSchema[], required
    - `id` string, required
    - `slug` string, required
    - `dateCreated` string, date-time, required
    - `isMember` boolean, required
    - `memberCount` integer, required
  - `access` string[], required
  - `openMembership` boolean — Allow any organization member to join any team

---

[API](https://skmtc.net/glitchtip/apis/glitchtip-api.md) · [All operations](https://skmtc.net/glitchtip/apis/glitchtip-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/glitchtip/glitchtip-api/revisions/45e129df1cfc/schema)
