---
title: "List a user's organization affiliations"
method: GET
path: "/users/{identifier}/organizations"
tags: ["Players"]
---

# List a user's organization affiliations

`GET /users/{identifier}/organizations`

Returns the target user's active organization memberships, each as an API-safe organization summary plus the membership role and joinedAt. The identifier is a username or Convex user ID. Requires the users.profile:read scope. Readable only for public or limited profiles (or the API key owner's own profile); a private profile returns 403, and an unknown or banned user returns 404. For anyone other than the profile owner, only organizations whose profile visibility is public are returned; the owner sees all of their memberships (regardless of profile visibility or discovery). Note this gates on the organization's profile-visibility axis, not the separate paid public-discovery flag. Not paginated - the full set is returned with a count, in no guaranteed order (not sorted by name or joinedAt).

## Path parameters

- `identifier` string, required — Username or Convex user ID.

## Response `200`

User organization affiliations.

- object — Envelope containing organizations, count, and a response timestamp.
  - `organizations` ApiUserOrganizationMembership[], required
    - `id` string, required — Organization ID.
    - `slug` string, nullable
    - `name` string, required — Organization name.
    - `tag` string, nullable
    - `avatarUrl` string, nullable
    - `visibility` 'public' | 'limited' | 'private' — Public profile visibility setting.
    - `role` string, required
    - `joinedAt` string, nullable, required — ISO 8601 timestamp.
  - `count` integer, required
  - `timestamp` string, required — ISO 8601 timestamp.

## Other responses

- `401` — Missing or invalid API key.
- `403` — API key lacks the required permission.
- `404` — Resource not found.
- `429` — Rate limited.
- `500` — Internal server error.

---

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