# 分页查询数据流模板
# API
分页查询数据流模板
请求路径 | Request |
---|---|
GET /dataStream/template/{productKey}/page | DataStreamTemplatePageRequest |
# 授权
当前API可使用授权类型与具体的授权参数请参考下表(多个授权类型可任选一个)。了解更多请查看平台鉴权。
授权类型 | 授权参数 | 封装授权参数(调用HanCloudsClient提供的方法来封装) |
---|---|---|
用户 | userKey / authKey / authSecret | putUserAuthParams()方法 |
产品 | productKey / queryKey / querySecret | putProductAuthParams()方法 |
项目 | projectKey / projectAuthKey / projectAuthSecret | putProjectAuthParams()方法 |
# 路径参数
参数名 | 类型 | 是否必须 | 说明 |
---|---|---|---|
productKey | String | 是 | 产品唯一Key |
# Query参数
参数名 | 类型 | 是否必须 | 说明 |
---|---|---|---|
identifier | String | 否 | 查询的标识符,支持模糊左匹配 |
dataType | Integer | 否 | 数据类型 |
page | Integer | 是 | 页数 |
pageSize | Integer | 是 | 分页大小 |
# Body参数
无
# 返回示例
{
"data": [
{
"id": 10959,
"identifier": "stream_int",
"dataName": "stream_int",
"dataUnit": null,
"unitSymbol": "",
"dataType": 2,
"desc": "",
"jsonSchema": "{\"maximum\":1111,\"minimum\":1,\"name\":\"stream_int\",\"step\":1,\"title\":\"stream_int\",\"type\":\"INTEGER\",\"unit\":\"\"}",
"bussinessType": null,
"standard": false
}
],
"page": 1,
"pageSize": 100,
"total": 1
}
具体可查看DataStreamTemplate