---
title: "Get User"
method: GET
path: "/api/v1/users/{user_id}"
tags: ["organizations"]
---

# Get User

`GET /api/v1/users/{user_id}`

## Path parameters

- `user_id` string, required

## Response `200`

Successful Response

- UserDetailResponse
  - `user` AdminUser, required
    - `user_id` string, required — Opaque `usr_*` identifier.
    - `email` string, required — Email of the user.
    - `display_name` string, nullable — User's display name, when set.
    - `created_at` string, date-time, nullable — UTC timestamp the user row was created.
    - `updated_at` string, date-time, nullable — UTC timestamp of the most recent user update.
    - `last_login_at` string, date-time, nullable — UTC timestamp of the user's most recent login.
    - `disabled_at` string, date-time, nullable — UTC timestamp the user was disabled, if any.
    - `membership_count` integer, nullable — Number of organization memberships this user has. Populated on listing endpoints.
  - `memberships` AdminUserMembership[], required — All organization memberships for this user.
    - `organization_id` string, required — Organization the membership belongs to.
    - `organization_name` string, required — Display name of that organization.
    - `role` 'ORG_ROLE_OWNER' | 'ORG_ROLE_ADMIN' | 'ORG_ROLE_MEMBER', required
    - `status` 'ORG_STATUS_ACTIVE' | 'ORG_STATUS_PENDING' | 'ORG_STATUS_DISABLED', required
    - `created_at` string, date-time, nullable — UTC timestamp the membership was created.
    - `updated_at` string, date-time, nullable — UTC timestamp of the most recent membership update.

---

[API](https://skmtc.dev/trajectory/apis/trajectory-api.md) · [All operations](https://skmtc.dev/trajectory/apis/trajectory-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/trajectory/trajectory-api/revisions/d930b23b9602/schema)
