---
title: "Create Organization"
method: POST
path: "/api/organization"
tags: ["Organization"]
---

# Create Organization

`POST /api/organization`

Create an organization.

## Request body

- OrganizationCreateSchema — Schema for creating an organization.
  - `name` string, required — Name of the organization.
  - `description` string — Description of the organization.

## Response `200`

Successful Response

- OrganizationSchema — Schema for representing an organization.
  - `id` string, uuid, required
  - `owner_id` string, uuid, required
  - `name` string, nullable — Optional name of the organization.
  - `description` string, nullable — Optional description of the organization.
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/chat-fly/apis/chatfly-backend-application.md) · [All operations](https://skmtc.net/chat-fly/apis/chatfly-backend-application/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/chat-fly/chatfly-backend-application/revisions/cbb37496f138/schema)
