---
title: "List Teams"
method: GET
path: "/v3/portals/{portalId}/teams"
tags: ["Portal Teams"]
---

# List Teams

`GET /v3/portals/{portalId}/teams`

Lists the developer teams in a portal. Each team can contain any developer and developers can be part of multiple teams.

## Query parameters

- `page[size]` integer
- `page[number]` integer
- `filter` object
  - `name` StringFieldFilter — Filter using **one** of the following operators: `eq`, `oeq`, `neq`, `contains`, `ocontains`
    - `eq` string — The field exactly matches the provided value.
    - `contains` string — The field contains the provided value.
    - `ocontains` string — The field contains any of the provided values.
    - `oeq` string — The field matches any of the provided values.
    - `neq` string — The field does not match the provided value.
  - `can_own_applications` boolean — Filter by a boolean value (true/false).

## Response `200`

A paginated list of teams in a portal.

- ListPortalTeamsResponse — A paginated list of teams in a portal.
  - `meta` PaginatedMeta, required — 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` PortalTeamResponse[], required
    - `id` string, uuid, required
    - `name` string, required — The name of the team.
    - `description` string, required — The description of the team.
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
    - `can_own_applications` boolean — Whether the team is allowed to own applications.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `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/revisions/b1ea6bd77dec/schema)
