---
title: "List Teams"
method: GET
path: "/v3/teams"
tags: ["Teams"]
---

# List Teams

`GET /v3/teams`

Returns an array of team objects containing information about the Konnect Teams.

## Query parameters

- `page[size]` integer
- `page[number]` integer
- `filter` object
  - `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.

## 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` Team[]
    - `id` string, uuid — The team ID.
    - `name` string — The name of the team.
    - `description` string — The team description in Konnect.
    - `system_team` boolean — Returns True if a user belongs to a `system_team`. System teams are teams that can manage Konnect objects, like "Organization Admin", or "Service"
    - `labels` Labels — Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types. Keys must be of length 1-63 characters, and cannot start with "kong", "konnect", "mesh", "kic", or "_".
    - `created_at` string, date-time — A Unix timestamp representation of team creation.
    - `updated_at` string, date-time — A Unix timestamp representation of the most recent change to the team object in Konnect.

## Other responses

- `400` — Bad Request
- `404` — Not Found

---

[API](https://skmtc.net/kong/apis/konnect-api-go-sdk.md) · [All operations](https://skmtc.net/kong/apis/konnect-api-go-sdk/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kong/konnect-api-go-sdk/versions/f920f418f552/schema)
