# 列出元信息

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/admin/meta/list:
    get:
      summary: 列出元信息
      deprecated: false
      description: ''
      tags:
        - admin/meta
        - admin/meta
      parameters:
        - name: page
          in: query
          description: 页数
          required: false
          example: ''
          schema:
            type: string
        - name: per_page
          in: query
          description: 每页个数
          required: false
          example: ''
          schema:
            type: string
        - name: Authorization
          in: header
          description: ''
          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:
                      content:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: integer
                              title: id
                            path:
                              type: string
                              title: 路径
                            password:
                              type: string
                              title: 密码
                            p_sub:
                              type: boolean
                              title: 密码是否应用到子文件夹
                            write:
                              type: boolean
                              title: 是否允许写入
                            w_sub:
                              type: boolean
                              title: 是否允许写入引用到子文件夹
                            hide:
                              type: string
                              title: 隐藏
                            h_sub:
                              type: boolean
                              title: 隐藏是否应用到子文件夹
                            readme:
                              type: string
                              title: 说明
                            r_sub:
                              type: boolean
                              title: 说明是否应用到子文件夹
                          x-apifox-orders:
                            - id
                            - path
                            - password
                            - p_sub
                            - write
                            - w_sub
                            - hide
                            - h_sub
                            - readme
                            - r_sub
                        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
                      path: /a
                      password: i
                      p_sub: false
                      write: false
                      w_sub: false
                      hide: ''
                      h_sub: false
                      readme: ''
                      r_sub: false
                  total: 1
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: admin/meta
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/6849786/apis/api-327955432-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
