---
title: "Retrieve a specific user"
method: GET
path: "/users/{id}"
tags: ["organizations", "users"]
---

# Retrieve a specific user

`GET /users/{id}`

Returns a specific user from the store

## Path parameters

- `id` string, required

## Response `200`

An User object

- User — A Chronograf user with role-based access-control to an organization's resources.
  - `id` string, required — Unique identifier representing a user resource
  - `links` object
    - `self` string, url — Self link mapping to this resource
  - `name` string, required — Username (as taken from principal given by auth provider)
  - `provider` string, required — OAuth provider used to authenticate
  - `roles` Role[], required
    - `name` 'member' | 'viewer' | 'editor' | 'admin' — A Chronograf user's role within an organization.
    - `organization` string — Name of organization user belongs to
  - `scheme` string, required — Scheme used to authenticate (only OAuth2 currently supported)
  - `superAdmin` boolean — If user has the ability to perform CRUD operations on Organizations, across Organizations, and on other SuperAdmin users

## Other responses

- `400` — Failed to load user from store; or failed to parse user ID as valid
- `403` — Forbidden to access this route
- `default` — Internal server error

---

[API](https://skmtc.net/influxdata/apis/chronograf.md) · [All operations](https://skmtc.net/influxdata/apis/chronograf/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/influxdata/chronograf/revisions/ce55d963b4ac/schema)
