# 添加高级模版

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/advance_template/add:
    post:
      summary: 添加高级模版
      deprecated: false
      description: >+

        获得 page_id: 说明


        1. 打开官网高级模版： https://www.mindshow.vip/workstation/#/advance_template


        2. 打开 需要的页面模板  跳转链接是:
        https://www.mindshow.vip/workstation/#/create_advance_template?page_id=xxxxxxxxxxx


        其中 复制 page_id 的值， 即为 page_id


        :::



      tags:
        - 单页高级模板
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                page_id:
                  description: '官网上可用的高级模版id ，详情查询协议说明  '
                  examples:
                    - 411-xxxxxxxxxxx
                  type: string
                title:
                  description: 标题
                  type: string
              required:
                - page_id
                - title
              x-apifox-orders:
                - page_id
                - title
      responses:
        '200':
          description: 成功
          content:
            application/json:
              schema:
                type: object
                title: ResponseModel
                properties:
                  code:
                    type: integer
                    description: 错误码( 0:成功. 其它值:失败[无data数据区])
                  info:
                    type: string
                    description: 错误信息
                    examples:
                      - succ
                  request_id:
                    type: string
                    description: 请求id,用于定位请求
                    examples:
                      - 21al1389334aal4f
                  data:
                    type: object
                    properties:
                      id:
                        description: ''
                        type: string
                    required:
                      - id
                    description: 数据区
                    x-apifox-orders:
                      - id
                required:
                  - code
                  - info
                  - request_id
                x-apifox-orders:
                  - code
                  - info
                  - request_id
                  - data
          headers: {}
          x-apifox-name: 成功
      security:
        - bearer: []
      x-apifox-folder: 单页高级模板
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/3930068/apis/api-308288482-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://api.mindshow.vip
    description: 正式环境
security:
  - bearer: []

```
