---
title: "Create Org"
method: POST
path: "/api/admin/organizations"
tags: ["admin"]
---

# Create Org

`POST /api/admin/organizations`

Create an enterprise organization (admin only).

## Request body

- CreateOrgRequest
  - `name` string, required
  - `slug` string, required
  - `billing_email` string, required
  - `seat_price_cents` integer, required
  - `billing_interval` string
  - `usage_limit_per_user_usd` number, required
  - `overage_enabled` boolean
  - `overage_limit_per_user_usd` integer, nullable
  - `api_markup_rate` number, nullable
  - `admin_user_email` string, nullable
  - `seat_price_id` string, nullable

## Response `201`

Successful Response

- AdminOrgResponse — Platform-admin org response: adds Stripe Dashboard deep links. These URLs are intentionally absent from ``OrgResponse`` so customer org admins (who read ``/api/org/...`` endpoints) never see them.
  - `id` integer, required
  - `name` string, required
  - `slug` string, required
  - `stripe_customer_id` string, nullable, required
  - `billing_email` string, nullable, required
  - `api_markup_rate` number, nullable, required
  - `archived_at` string, nullable, required
  - `created_at` string, required
  - `updated_at` string, required
  - `member_count` integer, nullable
  - `payment_method_status` string, nullable
  - `subscription` OrgSubscriptionInfo — Subscription details surfaced in org responses.
    - `plan` string, required
    - `status` string, required
    - `overage_enabled` boolean
    - `overage_limit_usd` number, nullable
    - `usage_limit_per_user_usd` number, nullable
    - `seat_price_cents` integer, nullable
  - `next_steps` string, nullable
  - `stripe_customer_url` string, nullable
  - `stripe_subscription_url` string, nullable
  - `workos_organization_id` string, nullable

## Other responses

- `422` — Validation Error

---

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