# 获取元信息

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/admin/meta/get:
    get:
      summary: 获取元信息
      deprecated: false
      description: ''
      tags:
        - admin/meta
        - admin/meta
      parameters:
        - name: id
          in: query
          description: 元信息id
          required: true
          example: '1'
          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:
                      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: 说明是否应用到子文件夹
                    required:
                      - id
                      - path
                      - password
                      - p_sub
                      - write
                      - w_sub
                      - hide
                      - h_sub
                      - readme
                      - r_sub
                    title: ''
                    x-apifox-orders:
                      - id
                      - path
                      - password
                      - p_sub
                      - write
                      - w_sub
                      - hide
                      - h_sub
                      - readme
                      - r_sub
                required:
                  - code
                  - message
                  - data
                title: ''
                x-apifox-orders:
                  - code
                  - message
                  - data
              example:
                code: 200
                message: success
                data:
                  id: 1
                  path: /a
                  password: c
                  p_sub: false
                  write: false
                  w_sub: false
                  hide: ''
                  h_sub: false
                  readme: ''
                  r_sub: false
          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-327955433-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
