实体值创建
更新时间:2023-03-13
1、接口地址:POST {IP}:{PORT}/open/v{versionId}/entity/entry/create
2、入参【请求的body中】
参数名 | 类型 | 是否可空 | 备注 |
---|---|---|---|
entityId | string | 否 | 实体id |
value | string | 否 | 实体值 |
synonyms | string | 是 | 同义词 ","英文逗号分割 |
3、返回值
参数名 | 类型 | 父节点 | 备注 |
---|---|---|---|
code | int | HTTP状态码 | |
time | long | 时间 | |
msg | string | 状态信息 | |
data | T | 返回数据 | |
id | string | data | id |
示例:
{
"time":1572405713583,
"data":{
"id":"xxxxxxxxxxxxxxxxxxxxxxx"
},
"code":200,
"msg":"OK"
}