# 得到模版标签配置

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/template/tag_cfg:
    post:
      summary: 得到模版标签配置
      deprecated: false
      description: |+

        用于模版的筛选的配置


      tags:
        - 模板相关
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties: {}
              x-apifox-orders: []
      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:
                      color_list:
                        type: array
                        description: 颜色列表
                        items:
                          description: ''
                          type: object
                          properties:
                            id:
                              description: 'id '
                              examples:
                                - 1
                              type: integer
                            label:
                              description: '标题 '
                              examples:
                                - 白色
                              type: string
                            color:
                              description: '颜色hex值 '
                              examples:
                                - '#FF0000'
                              type: string
                          required:
                            - id
                            - label
                            - color
                          x-apifox-orders:
                            - id
                            - label
                            - color
                      scene_list:
                        type: array
                        description: 场景列表
                        items:
                          description: ''
                          type: object
                          properties:
                            id:
                              description: 'id '
                              examples:
                                - 1
                              type: integer
                            label:
                              description: '标题 '
                              examples:
                                - 白色
                              type: string
                            color:
                              description: '颜色hex值 '
                              examples:
                                - '#FF0000'
                              type: string
                          required:
                            - id
                            - label
                            - color
                          x-apifox-orders:
                            - id
                            - label
                            - color
                    required:
                      - color_list
                      - scene_list
                    description: 数据区
                    x-apifox-orders:
                      - color_list
                      - scene_list
                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-287044915-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://api.mindshow.vip
    description: 正式环境
security:
  - bearer: []

```
