修改聊天机器人自定义内容
POST
/api/v0/chatbots/{chatbotId}/custom-content修改(添加/更新)聊天机器人的自定义内容
请求参数
Path 参数
chatbotId
string
必需
Header 参数
Authorization
string
必需
示例值:
Bearer <token>
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
text
string
必需
您想要提供给聊天机器人的自定义内容
示例
{
"text": "Sample custom content for the chatbot"
}
示例代码
返回响应
成功(200)
请求有误(400)
没有权限(401)
禁止访问(403)
服务器错误(500)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
success
boolean
必需
message
string
必需
data
object
必需
示例
成功示例
{
"success": true,
"message": "Modified custom content of the chatbot successfully",
"data": {}
}
最后修改时间: 8 个月前