闲聊库标准问新建
更新时间:2024-11-04
闲聊库标准问新建
1.接口地址: (POST) {IP}:{PORT}/open/v1/chitchat/standard/create
2.入参(需生成JSON字符串,放到请求的body中)
参数名 | 类型 | 是否可空 | 备注 |
---|---|---|---|
answer | list< map> | 否 | 答案Map列表 |
text | string | 否 | 答案文本 |
type | string | 否 | 答案类型(只能传数字,目前只可为1,为纯文本) |
question | string | 否 | 问题 |
示例:
{
"answer":[
{
"text":"答案1",
"type":"1"
},
......
]
"question":“问题1”
}
3.返回值
参数名 | 类型 | 父节点 | 备注 |
---|---|---|---|
code | int | HTTP状态码 | |
time | long | 时间 | |
msg | string | 状态信息 | |
data | map | 返回数据 | |
id | int | data | 闲聊标准问id |
示例:
{
"data":{"id":"08cd59d8-0e2a-4b76-8d2f-568bacad8d5e"},
"code":200,
"time":1568274632887,
"msg":"OK"
}