遍历产品模版

  1. 请求地址:GET /products/{productName}/templates

  2. 接口概述:

    遍历指定产品的模版数据。

  3. 请求参数:

    参数名 参数类型 参数说明 必需 备注
    offset integer 响应结果起始下标 默认0
    limit integer 响应结果的数量 默认50,最大1000

    如何遍历?

    地址参数

    参数名 参数类型 参数说明 必需 备注
    productName string 产品名
  4. 请求体:

  5. 请求示例:

    GET /bitanswer/api/products/{productName}/templates?limit=1 HTTP/1.1
    Host: back-office-api.bitanswer.cn
    bitkey: ••••••
  6. 响应示例:

    {
       "status": 0,
       "data": {
           "total": 1,
           "items": [
               {
                   "regDate": "2023-08-16 15:51:44",
                   "name": "Default",
                   "status": 0
               }
           ]
       }
    }

    响应体说明