用户意图详情
更新时间:2023-03-10
1、接口地址: (GET) {IP}:{PORT}/open/v1/user/intent/detail
2、入参(写入到param中)
参数名 | 类型 | 是否可空 | 备注 |
---|---|---|---|
id | string | 否 | 意图ID |
3、返回值
参数名 | 类型 | 父节点 | 备注 |
---|---|---|---|
code | int | HTTP状态码 | |
time | long | 时间 | |
msg | string | 状态信息 | |
data | T | 返回数据 | |
id | string | data | 意图id |
name | string | data | 意图名称 |
description | string | data | 意图描述 |
alias | string | data | 意图别名 |
nameZh | string | data | 意图中文名称 |
示例:
{
"code":200,
"time":1567998660176,
"msg":"",
"data":{
"id":"00ace67f-43c4-43e0-a7fa-b436af338d99",
"name": "intent__name",
"description": "意图描述",
"alias": "别名",
"nameZh": " 中文名称"
}
}