---
title: "View user"
method: GET
path: "/api/v1/users/{id}"
tags: ["User"]
---

# View user

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

Returns details of a single user

## Path parameters

- `id` string, required — Resource identifier.

## Response `200`

A single user resource.

- object
  - `data` object, required — User resource.
    - `id` string, required — Resource identifier.
    - `globalUserId` string, nullable — Nullable UUID identifier of the resource.
    - `username` string, required — The name of the user
    - `createdAt` string, date-time, required — The date the user was created
    - `description` string, nullable, required
    - `color` string, nullable — An optional hex value without the #, representing the avatar color
    - `isActive` boolean — A boolean value indicating if the user is active and can log in
    - `locale` string — A ISO-639-1 formatted string indicating the language the user will use
    - `isAdmin` boolean — A boolean value indicating if the user is an admin
    - `email` string, nullable
    - `emailVerifiedAt` string, date-time, nullable — The date where the user verified his email address
    - `mfa` boolean, nullable — Auth Platform MFA state
    - `contactId` string, nullable — The ID of the contact/address associated with this user

## Other responses

- `401` — Unable to authenticate the client
- `403` — Unable to authorize the client
- `404` — Resource was not found or not enough access privileges
- `406` — Requested resource representation does not exist.
- `429` — Too many API calls made.

---

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