# 查询指定存储信息

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/admin/storage/get:
    get:
      summary: 查询指定存储信息
      deprecated: false
      description: ''
      tags:
        - admin/storage
        - admin/storage
        - alist Copy/admin/storage
      parameters:
        - name: id
          in: query
          description: 存储id
          required: true
          example: '2'
          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: 状态码
                  message:
                    type: string
                    title: 信息
                  data:
                    type: object
                    properties:
                      id:
                        type: integer
                        title: id
                      mount_path:
                        type: string
                        title: 挂载路径
                      order:
                        type: integer
                        title: 排序
                      driver:
                        type: string
                        title: 驱动
                      cache_expiration:
                        type: integer
                        title: 缓存过期时间
                      status:
                        type: string
                        title: 状态
                      addition:
                        type: string
                        title: 额外信息
                      remark:
                        type: string
                        title: 备注
                      modified:
                        type: string
                        title: 修改时间
                      disabled:
                        type: boolean
                        title: 是否被禁用
                      order_by:
                        type: string
                        title: 排序方式
                      order_direction:
                        type: string
                        title: 排序方向
                      extract_folder:
                        type: string
                        title: 提取目录
                      web_proxy:
                        type: boolean
                        title: web代理
                      webdav_policy:
                        type: string
                        title: webdav策略
                      down_proxy_url:
                        type: string
                        title: 下载代理
                    required:
                      - id
                      - mount_path
                      - order
                      - driver
                      - cache_expiration
                      - status
                      - addition
                      - remark
                      - modified
                      - disabled
                      - order_by
                      - order_direction
                      - extract_folder
                      - web_proxy
                      - webdav_policy
                      - down_proxy_url
                    x-apifox-orders:
                      - id
                      - mount_path
                      - order
                      - driver
                      - cache_expiration
                      - status
                      - addition
                      - remark
                      - modified
                      - disabled
                      - order_by
                      - order_direction
                      - extract_folder
                      - web_proxy
                      - webdav_policy
                      - down_proxy_url
                required:
                  - code
                  - message
                  - data
                x-apifox-orders:
                  - code
                  - message
                  - data
              example:
                code: 200
                message: success
                data:
                  id: 2
                  mount_path: /aa
                  order: 1
                  driver: Aliyundrive
                  cache_expiration: 30
                  status: work
                  addition: >-
                    {"root_folder_id":"","refresh_token":"","order_by":"size","order_direction":"ASC","rapid_upload":false}
                  remark: ''
                  modified: '2022-11-26T21:50:44.142348853+08:00'
                  disabled: false
                  order_by: ''
                  order_direction: ''
                  extract_folder: front
                  web_proxy: false
                  webdav_policy: 302_redirect
                  down_proxy_url: ''
          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-327955449-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
