POST https://open.sobot.com/open/platform/api.json
参数名 |
类型 |
必填 |
说明 |
|
action |
字符串 |
是 |
传值为"delete_robot_doc" |
|
access_token |
字符串 |
是 |
调用接口凭据 |
|
data |
对象 |
是 |
详见下文 |
|
参数名 |
类型 |
必填 |
说明 |
|
docId |
字符串 |
是 |
词条id |
|
robotFlag |
整型 |
是 |
知识库所属机器人:0公共知识库,1机器人一 |
|
参数名 |
类型 |
说明 |
|
code |
字符串 |
执行结果码,1000代表成功 |
|
data |
对象 |
详见下文 |
|
参数名 |
类型 |
说明 |
|
retCode |
字符串 |
状态码 |
|
retMsg |
字符串 |
状态描述 |
|
curl https://open.sobot.com/open/platform/api.json \
-X POST \
-H 'content-type: application/json' \
-d '
{
"action" : "delete_robot_doc",
"access_token" : "xx",//获取access_token
"data" : {
"robotFlag":1,
"docId":"xx"
}
}'
{
"code" : "1000",
"data" : {
"retCode": "000000",
"retMsg": "操作成功!"
}
}