注册服务
社区版环境
POST
/api/v1/service请求参数
Body 参数application/json
test
name
string
服务名
service_identifier
string
服务标识符
service_type
integer
服务类型
服务类型 1-接入协议 2-接入服务
version
string
版本号
description
string
描述
service_config
string
服务配置
json格式
接入协议 service_config JSON 结构体
{
"device_type": 1, // 设备类型: 1-设备, 2-网关 (必填)
"access_address": "http://example.com/access", // 接入地址 (可选)
"http_address": "http://example.com/service", // HTTP服务地址 (必填)
"sub_topic_prefix": "topic_prefix" // 服务订阅主题前缀 (必填)
}
接入服务 service_config JSON 结构体
{
"http_address": "http://example.com/service", // HTTP服务地址 (必填)
"sub_topic_prefix": "topic_prefix" // 服务订阅主题前缀 (必填)
}
remark
string
备注
示例
{
"device_type": 1,
"language_code": "zh",
"name": "xxxx",
"protocol_type": "xxxxxxxxx",
"remark": "xxxxx",
"http_address": "xxxxxxxxxxx",
"access_address": "xxxxxxx",
"sub_topic_prefix": "xxxxxxxx",
"additional_info": "{}",
"description": "xxxxxxxxxxxxxxxxxxxxxxx"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
message
string
必需
data
object
必需
id
string
必需
示例
{
"code": 200,
"message": "create service successfully",
"data": {
"id": "3776a2f3-a619-826e-c2b5-3678cb7f86ea"
}
}
最后修改时间: 6 个月前