---
title: "Get authenticated user's scope member details"
method: GET
path: "/user/member/{scope}"
---

# Get authenticated user's scope member details

`GET /user/member/{scope}`

Returns details of the authenticated user's membership of a scope

## Path parameters

- `scope` string, required — The name of a scope. This must not be @ prefixed.

## Response `200`

OK

- ScopeMember
  - `scope` string, required — The name of a scope. This must not be @ prefixed.
  - `user` User, required — Public user information.
    - `id` string, uuid, required — The ID of a user.
    - `name` string, required — The user's display name.
    - `avatarUrl` string, required — The URL to the user's avatar.
    - `githubId` integer, nullable — The user's GitHub ID.
    - `createdAt` string, date-time, required — The date and time when the user profile was created.
    - `updatedAt` string, date-time, required — The date and time when the user profile was last updated.
  - `isAdmin` boolean, required — Whether the user is an admin of the scope.
  - `createdAt` string, date-time, required — The date and time when the user was added to the scope.
  - `updatedAt` string, date-time, required — The date and time when the scope member roles were last updated.

## Other responses

- `401` — Unauthorized

## Changes

- **2026-02-06** `0c4e8d8a5c2a` — 1 breaking, 7 warning, 1 info
  - the response property `user/githubId` became nullable for the status `200`
  - changed the pattern of the `path` request parameter `scope` from `/^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/` to `^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$`
  - removed the optional property `user/email` from the response with the `200` status
  - removed the optional property `user/inviteCount` from the response with the `200` status
  - …5 more
- **2024-02-28** `f8d3b912d946` — 1 warning, 7 info
  - changed the pattern of the `path` request parameter `scope` from `^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$` to `/^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/`
  - added the optional property `user/email` to the response with the `200` status
  - added the optional property `user/inviteCount` to the response with the `200` status
  - added the optional property `user/isBlocked` to the response with the `200` status
  - …4 more

[Change history](https://skmtc.dev/jsr-io/apis/jsr-api/changes/user/member/:scope/get.md)

---

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