---
title: "List System Account Access Tokens"
method: GET
path: "/v3/system-accounts/{accountId}/access-tokens"
tags: ["System Accounts - Access Tokens"]
---

# List System Account Access Tokens

`GET /v3/system-accounts/{accountId}/access-tokens`

Returns the access tokens for the specified system account. 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.

## Response `200`

A paginated list response for a collection of system accounts access tokens.

- 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` SystemAccountAccessToken[]
    - `id` string, uuid — ID of the system account access token.
    - `name` string — Name of the system account access token.
    - `created_at` string, date-time — Timestamp of when the system account access token was created.
    - `updated_at` string, date-time — Timestamp of when the system account access token was last updated.
    - `expires_at` string, date-time — Timestamp of when the system account access token will expire.
    - `last_used_at` string, date-time — Timestamp of when the system account access token was last used.

## Other responses

- `400` — Bad Request
- `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/revisions/fbe6ce110ba4/schema)
