---
title: "Get all users"
method: GET
path: "/users"
tags: ["Users"]
---

# Get all users

`GET /users`

Get all users

## Query parameters

- `limit` integer, nullable
- `search` string, nullable
- `ids` string[], nullable
- `active` boolean, nullable
- `orders` object[], nullable
  - `column` string
  - `direction` 'asc' | 'desc'

## Response `200`

successful operation

- object
  - `data` User[]
    - `id` string — The unique identifier for the user.
    - `first_name` string — The first name of the user.
    - `last_name` string — The last name of the user.
    - `full_name` string — The full name of the user.
    - `email` string — The email address of the user.
    - `company_id` string — The company id of the user.
    - `email_verified_at` string, date-time — The email verified at.
    - `active` boolean — The active flag of the user.
    - `timezone` string — The timezone of the user.
    - `language` string — The language of the user.
    - `last_used` object — The last used of the user.
      - `clients` string[] — The 10 last used clients of the user.
      - `projects` string[] — The 10 last used projects of the user.
      - `services` string[] — The 10 last used services of the user.
    - `settings` object, nullable — The settings of the user.
  - `meta` Pagination
    - `current_page` integer
    - `from` integer
    - `last_page` integer
    - `links` object[]
      - `url` string
      - `label` string
      - `active` boolean
    - `path` string
    - `per_page` integer
    - `to` integer
    - `total` integer

## Other responses

- `401` — Error: Unauthorized

---

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