# Get User

> GET /v1/users/{userId}

`GET https://app.untetherlabs.com/api/v1/users/{userId}`

## Request

```bash
curl -X GET 'https://app.untetherlabs.com/api/v1/users/3fa85f64-5717-4562-b3fc-2c963f66afa6' \
  -H 'Authorization: Bearer $UNTETHER_API_KEY'
```

## Path parameters

- `userId` (uuid, required)

## Response 200

- `type` (UserType, required, one of `user`, `bot`)
- `name` (string, required)
- `email` (string, required)
- `status` (EmploymentStatus, required, one of `onboarding`, `active`, `dismissed`, `unmanaged`)
- `isAdmin` (boolean, required)

## Errors

- `validation` (400) — Input validation failed.
- `user-not-found` (404) — A specified user does not exist in the system.
