创建转发数据源
开发中POST
/api/v1/forwarding/source请求参数
Body 参数application/json
forwarding_rule_id
string
转发规则ID
source_type
string
数据源类型
device-设备、group-分组、product-产品
source_id
string
数据源ID
message_type
string
消息类型
1-遥测上行、2-属性上行、3-事件、4-上下线通知 (多选,英文逗号隔开)
示例
{
"forwarding_rule_id": "string",
"source_type": "string",
"source_id": "string",
"message_type": "string"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
message
string
必需
data
object
必需
id
string
必需
forwarding_rule_id
string
必需
source_type
string
必需
source_id
string
必需
message_type
string
必需
created_at
string
必需
updated_at
string
必需
示例
{
"code": 200,
"message": "转发数据源创建成功",
"data": {
"id": "ee5c07b3-b08b-b542-6e46-2967034e77ea",
"forwarding_rule_id": "9b9404fb-c1d5-645a-17f3-4bc83b580fbb",
"source_type": "device",
"source_id": "5af22b17-e977-bfaa-cecb-358cf1488182",
"message_type": "1,2",
"created_at": "2024-10-18T12:18:48.3984083+08:00",
"updated_at": "2024-10-18T12:18:48.3984083+08:00"
}
}
最后修改时间: 2 个月前