---
title: "List organizations for a user"
method: GET
path: "/api/v1/users/{user}/orgs"
---

# List organizations for a user

`GET /api/v1/users/{user}/orgs`

Returns the organizations the specified user belongs to. A user can belong
to at most one organization, so the `data` array contains either zero or one
items.

The authenticated viewer must have permission to inspect the target user.
Returns an empty `data` array when the user has no organization membership.

## Path parameters

- `user` string, required

## Response `200`

Successful response

- object — The user's organization memberships.
  - `data` object[], required — Array of organization objects the user belongs to. Contains at most one item.
    - `created_at` string, date-time — When this organization was created (ISO 8601).
    - `description` string — Short human-readable description of the organization. `null` if not set.
    - `domain` string — Primary domain associated with the organization, e.g. `"acme.com"`. `null` if not configured.
    - `id` string, required — Organization ID (`org_...`).
    - `industry` string — Industry category the organization belongs to, e.g. `"fintech"` or `"healthcare"`. `null` if not set.
    - `name` string — Display name of the organization. `null` if the org has not set a name.
    - `onboarding_track` string — The new-user experience track this org first completed. `"vendor"` for orgs that onboarded as service providers; `"customer"` for orgs that onboarded as buyers. `null` if onboarding was not tracked.
    - `sandbox` string — ID of the sandbox environment scoped to this organization (`snd_...`). `null` for organizations in production mode.
    - `slug` string — URL-safe identifier for the organization, used in vanity URLs and slug-based lookups.
    - `status` string — Current lifecycle status of the organization, e.g. `"active"` or `"suspended"`. `null` if the status has not been set.
    - `updated_at` string, date-time — When this organization was last modified (ISO 8601).
    - `website` string — Public website URL for the organization. `null` if not set.

## Other responses

- `401` — Unauthorized

---

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