# 列出存储列表

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/admin/storage/list:
    get:
      summary: 列出存储列表
      deprecated: false
      description: ''
      tags:
        - admin/storage
        - admin/storage
        - alist Copy/admin/storage
      parameters:
        - name: page
          in: query
          description: 页数
          required: false
          example: '1'
          schema:
            type: string
        - name: per_page
          in: query
          description: 每页数目
          required: false
          example: '1'
          schema:
            type: string
        - name: Authorization
          in: header
          description: token
          required: true
          example: '{{alist_token}}'
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                    title: 状态码
                    description: 状态码
                  message:
                    type: string
                    title: 信息
                    description: 信息
                  data:
                    type: object
                    properties:
                      content:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: integer
                              title: id
                              description: id
                            mount_path:
                              type: string
                              title: 挂载路径
                              description: 挂载路径
                            order:
                              type: integer
                              title: 排序
                              description: 顺序
                            driver:
                              type: string
                              title: 驱动
                              description: 驱动类型
                            cache_expiration:
                              type: integer
                              title: 缓存过期时间
                              description: 缓存时间
                            status:
                              type: string
                              title: 状态
                              description: 状态
                            addition:
                              type: string
                              title: 额外信息
                              description: 额外信息
                            remark:
                              type: string
                              title: 备注
                              description: 备注名
                            modified:
                              type: string
                              title: 修改时间
                              description: 修改时间
                            disabled:
                              type: boolean
                              title: 禁用
                              description: 是否被禁用
                            enable_sign:
                              type: boolean
                              title: 启用签名
                            order_by:
                              type: string
                              title: 排序
                              description: 排序方式
                            order_direction:
                              type: string
                              title: 排序方向
                              description: 排序方向
                            extract_folder:
                              type: string
                              title: 提取文件夹
                              description: 提取目录顺序
                            web_proxy:
                              type: boolean
                              title: web代理
                              description: http代理
                            webdav_policy:
                              type: string
                              title: webdav代理
                              description: webdav策略
                            down_proxy_url:
                              type: string
                              title: 下载代理url
                              description: 下载代理url
                          x-apifox-orders:
                            - id
                            - mount_path
                            - order
                            - driver
                            - cache_expiration
                            - status
                            - addition
                            - remark
                            - modified
                            - disabled
                            - enable_sign
                            - order_by
                            - order_direction
                            - extract_folder
                            - web_proxy
                            - webdav_policy
                            - down_proxy_url
                        title: ''
                      total:
                        type: integer
                        title: 总数
                    required:
                      - content
                      - total
                    title: ''
                    x-apifox-orders:
                      - content
                      - total
                required:
                  - code
                  - message
                  - data
                x-apifox-orders:
                  - code
                  - message
                  - data
              example:
                code: 200
                message: success
                data:
                  content:
                    - id: 1
                      mount_path: /lll
                      order: 0
                      driver: Local
                      cache_expiration: 0
                      status: work
                      addition: >-
                        {"root_folder_path":"/root/www","thumbnail":false,"thumb_cache_folder":"","show_hidden":true,"mkdir_perm":"777"}
                      remark: ''
                      modified: '2023-07-19T09:46:38.868739912+08:00'
                      disabled: false
                      enable_sign: false
                      order_by: name
                      order_direction: asc
                      extract_folder: front
                      web_proxy: false
                      webdav_policy: native_proxy
                      down_proxy_url: ''
                  total: 5
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: admin/storage
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/6849786/apis/api-327955446-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
