---
title: "Return a list of users."
method: GET
path: "/user-accounts"
tags: ["User accounts"]
---

# Return a list of users.

`GET /user-accounts`

This endpoint returns an array of objects with the existing employees in Kenjo. Every object contains the basic employee information from **account**, **personal** and **work** sections per each existing employee.

## Headers

- `Authorization` string, required

## Response `200`

OK

- object[]
  - `_id` string — The Kenjo employee _id.
  - `email` string — The employee email in Kenjo.
  - `isActive` string — Indicates the active status of the Kenjo employee.
  - `firstName` string — The first name of the Kenjo employee.
  - `lastName` string — The last name of the Kenjo employee.
  - `displayName` string — The complete name of the Kenjo employee.
  - `companyId` string — The Kenjo Id of the company for this employee.
  - `officeId` string — The Kenjo Id of the office for this employee.
  - `departmentId` string — The Kenjo Id of the department for this employee.
  - `jobTitle` string — The job title for this employee.

## Other responses

- `400` — BAD REQUEST. This is a wrong request in the client side due to invalid body or params.
- `401` — UNAUTHORIZED. The Authorization header is incorrect, not provided or the token expired.

---

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