# 得到单个模版

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/template/get:
    post:
      summary: 得到单个模版
      deprecated: false
      description: |+





      tags:
        - 模板相关
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                template_id:
                  description: '模板id '
                  examples:
                    - 138dlkafal
                  type: string
              required:
                - template_id
              x-apifox-orders:
                - template_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:
                          template_id:
                            description: '模板id '
                            examples:
                              - 138dlkafalk348ff
                            type: string
                          title:
                            description: '标题 '
                            examples:
                              - 模板标题1
                            type: string
                          from_type:
                            description: '来源： `recommend`: 推荐， `default`:默认'
                            type: string
                          type:
                            description: '分类: private: 私有模板, public: 公共模板, share: 分享模板 '
                            examples:
                              - public
                            type: string
                          vip_flag:
                            description: '是否需要会员才能使用 '
                            examples:
                              - false
                            type: boolean
                          preview_img_list:
                            type: array
                            description: 预览图片列表
                            items:
                              description: ''
                              type: string
                        required:
                          - template_id
                          - title
                          - from_type
                          - type
                          - vip_flag
                          - preview_img_list
                        x-apifox-orders:
                          - template_id
                          - title
                          - from_type
                          - type
                          - vip_flag
                          - preview_img_list
                    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-291349973-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://api.mindshow.vip
    description: 正式环境
security:
  - bearer: []

```
