---
title: "List users"
method: GET
path: "/api-public/v2/user"
tags: ["Users"]
---

# List users

`GET /api-public/v2/user`

Get a list of users for your organization. Optionally, search for users by email address.

This API may be called a maximum of 2 times per second.

## Query parameters

- `email` string

## Headers

- `X-VO-Api-Id` string, required
- `X-VO-Api-Key` string, required

## Response `200`

A list of the users in your organization. If the `email` parameter is present, the response is the list of users in your organization with a matching email address.

- ListUserResponse — Some info about the user
  - `users` V1User[]
    - `firstName` string
    - `lastName` string
    - `username` string
    - `email` string
    - `createdAt` string
    - `passwordLastUpdated` string
    - `verified` boolean — Whether or not this user has set their password (will always be false)
    - `_selfUrl` string
  - `_selfUrl` string

## Other responses

- `400` — Problem with the request arguments. The `email` request parameter must be at least three (3) characters long, if present.
- `401` — Authentication parameters missing
- `403` — Authentication failed or rate-limit reached
- `404` — User not found
- `500` — Internal Server Error

---

[API](https://skmtc.net/victorops/apis/victorops-api.md) · [All operations](https://skmtc.net/victorops/apis/victorops-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/victorops/victorops-api/versions/7a7391256058/schema)
