---
title: "Update Org"
method: PATCH
path: "/api/admin/organizations/{org_id}"
tags: ["admin"]
---

# Update Org

`PATCH /api/admin/organizations/{org_id}`

Edit an enterprise organization's billing profile (admin only).

Covers seat price, per-user usage cap, overage toggle/ceiling,
API markup, org name, and billing email. Seat-price changes create
a new per-org Stripe Price and swap the subscription item with
proration. Name/email changes are mirrored to the Stripe Customer
so invoices stay aligned. An append-only ``billing_events`` row
captures ``{before, after, reason}``.

## Path parameters

- `org_id` integer, required

## Request body

- UpdateOrgRequest
  - `name` string, nullable
  - `billing_email` string, nullable
  - `seat_price_cents` integer, nullable
  - `usage_limit_per_user_usd` number, nullable
  - `overage_enabled` boolean, nullable
  - `overage_limit_per_user_usd` integer, nullable
  - `api_markup_rate` number, nullable
  - `reason` string, nullable

## Response `200`

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/versions/399077308c86/schema)
