# 获取单个高级模版

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/advance_template/get:
    post:
      summary: 获取单个高级模版
      deprecated: false
      description: |+




      tags:
        - 单页高级模板
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  description: '高级模版id '
                  examples:
                    - 1b3dkf13Ac80
                  type: string
              required:
                - id
              x-apifox-orders:
                - id
      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:
                      item:
                        description: 模版数据
                        type: object
                        properties:
                          id:
                            description: '高级模版id  '
                            examples:
                              - 1dk13k3hgfk
                            type: string
                          title:
                            description: '标题 '
                            examples:
                              - 标题
                            type: string
                          created_at:
                            description: 生成时间
                            type: string
                          updated_at:
                            description: 生成时间
                            type: string
                          preview_img_url:
                            description: 预览图
                            type: string
                          input_args:
                            description: 输入参数列表,JSON
                            type: string
                          input_args_example:
                            description: 输入参数列表，案例
                            type: string
                        required:
                          - id
                          - title
                          - created_at
                          - updated_at
                          - preview_img_url
                          - input_args
                          - input_args_example
                        x-apifox-orders:
                          - id
                          - title
                          - created_at
                          - updated_at
                          - preview_img_url
                          - input_args
                          - input_args_example
                    required:
                      - item
                    description: 数据区
                    x-apifox-orders:
                      - item
                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-308288491-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://api.mindshow.vip
    description: 正式环境
security:
  - bearer: []

```
