---
title: "Create an organization"
method: POST
path: "/v1beta/organizations"
tags: ["Organizations"]
---

# Create an organization

`POST /v1beta/organizations`

Creates a new organization. The authenticated user becomes the organization owner.

## Request body

- CreateOrganizationRequest — CreateOrganizationRequest contains the data needed to create a new organization.
  - `name` string, required — Human-readable organization name.
  - `owner_user_id` string, nullable — Owner user ID. If not provided, the authenticated user becomes the owner. Authorization: Specifying a different user requires system maintainer role. Required when the caller is a service account (service accounts cannot own organizations). Pattern: user_[0-9a-hjkmnp-tv-z]{26}

## Response `200`

Success

- CreateOrganizationResponse — CreateOrganizationResponse contains the newly created organization.
  - `organization` Organization, required — Organization represents a Factify organization.
    - `created_at` string, date-time, required — Timestamp when the organization was created.
    - `id` string, required — Unique ID for the organization. Pattern: org_[0-9a-hjkmnp-tv-z]{26}
    - `logo_image_url` string, nullable — Optional — organizations may not have a logo.
    - `name` string, required — Human-readable organization name.

## Other responses

- `400` — Invalid request parameters
- `401` — Authentication failed - missing or invalid API key
- `403` — Authorization failed - valid key but insufficient permissions
- `404` — Resource not found
- `429` — Too many requests
- `500` — Internal server error

---

[API](https://skmtc.net/factify-inc/apis/factify-api.md) · [All operations](https://skmtc.net/factify-inc/apis/factify-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/factify-inc/factify-api/versions/8baabdfb82bf/schema)
