---
title: "Get list of accesskeys"
method: GET
path: "/accesskeys"
tags: ["Accesskey"]
---

# Get list of accesskeys

`GET /accesskeys`

Get accesskeys of the customer

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

Successful response

- object
  - `next_page_token` string — Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.
  - `result` CustomerManagerAccesskey[]
    - `id` string, uuid — The unique identifier of the access key.
    - `customer_id` string, uuid — The unique identifier of the customer. Returned from the `GET /customers` response.
    - `name` string — Name of the access key.
    - `detail` string — Additional details about the access key.
    - `token` string — The access key token. Only returned once at creation time via `POST /accesskeys`. Subsequent `GET` requests will not include this field. Store it securely immediately after creation.
    - `token_prefix` string — A short prefix of the access key token for identification purposes. Always returned in `GET` responses.
    - `tm_expire` string, date-time — Timestamp when the access key expires.
    - `tm_create` string, date-time — Timestamp when the access key was created.
    - `tm_update` string, date-time — Timestamp when the access key was last updated.
    - `tm_delete` string, date-time — Timestamp when the access key was deleted.

## Other responses

- `401` — Authentication required (UNAUTHENTICATED).
- `500` — Internal error (INTERNAL).

---

[API](https://skmtc.net/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.net/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/revisions/79e779080bcc/schema)
