---
title: "List System Accounts"
method: GET
path: "/v3/system-accounts"
tags: ["System Accounts"]
---

# List System Accounts

`GET /v3/system-accounts`

Returns an array of system accounts (SA) in the organization. Returns 400 if any filter parameters are invalid.

## 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.
  - `description` 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.
  - `konnect_managed` boolean — Filter by a boolean value (true/false).

## 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

- `400` — Bad Request
- `401` — Unauthenticated
- `403` — Unauthorized

---

[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/0261aef4b1e2/schema)
