---
title: "Get a list of storage accounts"
method: GET
path: "/storage_accounts"
tags: ["Storage"]
---

# Get a list of storage accounts

`GET /storage_accounts`

Retrieves a list of storage accounts with the provided pagination details.

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

A list of storage accounts with pagination information.

- 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` StorageManagerAccount[]
    - `id` string, uuid — The unique identifier of the storage account. Returned from the `GET /storage_accounts` response.
    - `customer_id` string, uuid — The unique identifier of the customer who owns this storage account. Returned from the `GET /customers` response.
    - `total_file_count` integer — The total number of files in the account.
    - `total_file_size` integer — The total file size in bytes.
    - `tm_create` string, date-time — The creation timestamp.
    - `tm_update` string, date-time — The last update timestamp.
    - `tm_delete` string, date-time — The deletion timestamp.

## 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/versions/79e779080bcc/schema)
