---
title: "Retrieve users"
method: GET
path: "/v1/users"
tags: ["users"]
---

# Retrieve users

`GET /v1/users`

Retrieve a list of users in a workspace. This call supports pagination; default page size includes 20 users.

## Query parameters

- `email` string — Filter by a user’s email address. This is not case sensitive.
- `name` string — Filter by a user’s name. This is not case sensitive.
- `page` string — API responses use pagination to reduce loading time. Return a specific page of results, using a zero-based page index (0..N).
- `pageSize` string — API responses use pagination to reduce loading time. Return a maximum of this many items per page.

## Headers

- `Workspace` string, required

## Response `200`

Success

- EndUserPageResponse
  - `items` EndUserResponse[]
    - `id` string — The unique identifier of the user.
    - `email` string — The user’s email address.
    - `name` string — The user’s full name.
    - `protectedUser` boolean — The protection status of the user.
  - `totalElements` integer — The total number of records that exist for the request.

## Other responses

- `400` — Bad request, validation error
- `401` — Unauthorized request
- `403` — Access forbidden
- `429` — Too Many Requests
- `500` — Internal server error

---

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