---
title: "Get a user"
method: GET
path: "/users/{id}"
tags: ["Users"]
---

# Get a user

`GET /users/{id}`

Retrieves a specified user.

## Path parameters

- `id` string, uuid, required

## Response `200`

When request is successful. Returns a 'User' object.

- User
  - `id` string, nullable
  - `href` string, nullable
  - `relation` string, nullable
  - `method` string, nullable
  - `self` Link
    - `id` string, nullable
    - `href` string, nullable
    - `relation` string, nullable
    - `method` string, nullable
  - `userId` string, nullable — Unique identifier of the user.
  - `email` string, nullable — Email address of the user.
  - `isInternal` boolean — Returns true if the user is flagged as an internal user.
  - `bypassMfa` boolean — Returns true if multi-factor authentication is bypassed for the user.

## Other responses

- `400` — When an unsupported request is made.
- `403` — When user with specified id is not associated with authenticated client.
- `404` — When user with specified id does not exist.

---

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