---
title: "ListTeams"
method: GET
path: "/admin/teams"
tags: ["Admin - Teams"]
---

# ListTeams

`GET /admin/teams`

List all teams for admin management.

Returns:
    Paginated list of teams.

## Query parameters

- `ids` string[], nullable
- `createdBefore` string, date-time, nullable
- `createdAfter` string, date-time, nullable
- `updatedBefore` string, date-time, nullable
- `updatedAfter` string, date-time, nullable
- `searchString` string, nullable
- `searchIgnoreCase` boolean, nullable
- `currentPage` integer
- `pageSize` integer
- `orderBy` string, nullable
- `sortOrder` 'asc' | 'desc' | 'null', nullable

## Response `200`

Request fulfilled, document follows

- AdminTeamListPage
  - `page` integer
  - `pageSize` integer
  - `teams` AdminTeamListItem[], required
    - `createdAt` string, date-time, nullable
    - `description` string, nullable
    - `id` string, uuid, required
    - `isActive` boolean
    - `memberCount` integer
    - `name` string, required
    - `ownerEmail` string, nullable
    - `slug` string, required
  - `total` integer, required

## Other responses

- `400` — Bad request syntax or unsupported method

---

[API](https://skmtc.net/litestar-org/apis/app.md) · [All operations](https://skmtc.net/litestar-org/apis/app/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/litestar-org/app/versions/461f3baecebb/schema)
