# 新增元信息

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/admin/meta/create:
    post:
      summary: 新增元信息
      deprecated: false
      description: ''
      tags:
        - admin/meta
        - admin/meta
      parameters:
        - name: Authorization
          in: header
          description: ''
          required: true
          example: '{{alist_token}}'
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              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
              x-apifox-orders:
                - id
                - path
                - password
                - p_sub
                - write
                - w_sub
                - hide
                - h_sub
                - readme
                - r_sub
            example:
              id: 0
              path: /a
              password: c
              p_sub: false
              write: false
              w_sub: false
              hide: ''
              h_sub: false
              readme: ''
              r_sub: false
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  message:
                    type: string
                  data:
                    type: 'null'
                required:
                  - code
                  - message
                  - data
                x-apifox-orders:
                  - code
                  - message
                  - data
              example:
                code: 200
                message: success
                data: null
          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-327955434-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
