---
title: "Get Org Admin"
method: GET
path: "/api/admin/organizations/{org_id}"
tags: ["admin"]
---

# Get Org Admin

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

Get full org detail (members, invitations, SSO) plus Stripe Dashboard URLs.

## Path parameters

- `org_id` integer, required

## Response `200`

Successful Response

- AdminOrgDetailResponse — Platform-admin org detail: ``OrgDetailResponse`` + Stripe Dashboard URLs. Subclassing keeps the full ``members``/``invitations``/``subscription`` shape in OpenAPI, which generated clients rely on.
  - `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` OrgSubscriptionResponse, required
    - `plan` string, required
    - `usage_limit_override_usd` number, nullable, required
    - `overage_enabled` boolean, required
    - `overage_limit_usd` number, nullable, required
    - `seat_price_cents` integer, nullable
    - `billing_interval` string, nullable
  - `next_steps` string, nullable
  - `members` OrgMemberResponse[], required
    - `user_id` integer, required
    - `email` string, required
    - `name` string, required
    - `role` string, required
    - `usage_limit_override_usd` number, nullable, required
    - `overage_limit_override_usd` number, nullable, required
    - `created_at` string, required
  - `invitations` OrgInvitationResponse[]
    - `id` integer, required
    - `email` string, required
    - `role` string, required
    - `token` string, required
    - `expires_at` string, required
    - `created_at` string, required
  - `sso_configured` boolean
  - `stripe_customer_url` string, nullable
  - `stripe_subscription_url` string, nullable
  - `workos_organization_id` string, nullable
  - `workos_dashboard_url` 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)
