---
title: "List System Accounts on a Team"
method: GET
path: "/v3/teams/{teamId}/system-accounts"
tags: ["System Accounts - Team Membership"]
---

# List System Accounts on a Team

`GET /v3/teams/{teamId}/system-accounts`

Returns a paginated list of system accounts that belong to the team specified in the path parameter.

## 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 system accounts.

- 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` SystemAccount[]
    - `id` string, uuid — ID of the system account.
    - `name` string — Name of the system account.
    - `description` string — Description of the system account.
    - `created_at` string, date-time — Timestamp of when the system account was created.
    - `updated_at` string, date-time — Timestamp of when the system account was last updated.
    - `konnect_managed` boolean — The system account is managed by Konnect (true/false).

## Other responses

- `401` — Unauthenticated
- `403` — Unauthorized
- `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)
