---
title: "List Users"
method: GET
path: "/v3/users"
tags: ["Users"]
---

# List Users

`GET /v3/users`

Returns a paginated list of user objects.

## Query parameters

- `page[size]` integer
- `page[number]` integer
- `filter` object
  - `id` StringFieldEqualsFilter — Filters on the given string field value by exact match.
    - `eq` string
  - `email` LegacyStringFieldFilter — Filter using **one** of the following operators: `eq`, `contains`
    - `eq` string — The field exactly matches the provided value.
    - `contains` string — The field contains the provided value.
  - `full_name` LegacyStringFieldFilter — Filter using **one** of the following operators: `eq`, `contains`
    - `eq` string — The field exactly matches the provided value.
    - `contains` string — The field contains the provided value.
  - `active` boolean — Filter by a boolean value (true/false).

## Response `200`

A paginated list response for a collection of users.

- object
  - `meta` PaginatedMeta — returns the pagination information
    - `page` PageMeta, required — Contains pagination query parameters and the total number of objects returned.
      - `number` number, required
      - `size` number, required
      - `total` number, required
  - `data` User[]
    - `id` string, uuid — The User ID.
    - `email` string, email — The email registered to the user.
    - `full_name` string — The User's full name.
    - `preferred_name` string — The User's preferred name.
    - `active` boolean — Returns True if a user has verified their email address.
    - `inferred_region` string — The Konnect region closest to the user's IP address. This property might only be set for users on signup through Konnect’s build-in native authentication.
    - `created_at` string, date-time — The time stamp for the date the account was registered.
    - `updated_at` string, date-time — A Unix timestamp representation of the most recent change to the User account.

## Other responses

- `400` — Bad Request

## Changes

- **2025-10-23** `8ab3ec3ed301` — 1 warning
  - added the new `type` enum value to the `allOf[subschema #2]/invalid_parameters/items/oneOf[#/components/schemas/InvalidParameterStandard]/rule` response property for the response status `400`
- **2025-09-11** `396c243e49dc` — 1 warning
  - for the `query` request parameter `filter`, the type/format of property `id` was changed from `string`/`` to ``/``
- **2025-08-22** `3c0154b2053a` — 9 breaking, 1 info
  - the response property `allOf[subschema #2]/invalid_parameters/items/oneOf[#/components/schemas/InvalidParameterChoiceItem]/source` became nullable for the status `400`
  - the response property `allOf[subschema #2]/invalid_parameters/items/oneOf[#/components/schemas/InvalidParameterDependentItem]/source` became nullable for the status `400`
  - the response property `allOf[subschema #2]/invalid_parameters/items/oneOf[#/components/schemas/InvalidParameterMaximumLength]/source` became nullable for the status `400`
  - the response property `allOf[subschema #2]/invalid_parameters/items/oneOf[#/components/schemas/InvalidParameterMinimumLength]/source` became nullable for the status `400`
  - …6 more
- …earlier changes not shown

[Full history](https://skmtc.dev/kong/apis/konnect-api-go-sdk/changes/v3/users/get.md)

---

[API](https://skmtc.dev/kong/apis/konnect-api-go-sdk.md) · [All operations](https://skmtc.dev/kong/apis/konnect-api-go-sdk/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/kong/konnect-api-go-sdk/revisions/7d3c634668f8/schema)
