添加聊天机器人链接
POST
/api/v0/chatbots/{chatbotId}/links添加到聊天机器人的链接。
请求参数
Path 参数
chatbotId
string
必需
聊天机器人的 ID
Header 参数
Authorization
string
必需
示例值:
Bearer <token>
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
links
array [object {2}]
必需
需要添加到聊天机器人的链接的详细信息
url
string
待添加网址
urlType
string
必需
必须添加的 URL 类型
示例
{
"links": [
{
"url": "https://sitegpt.ai",
"urlType": "WEB"
},
{
"url": "https://sitegpt.ai/pricing",
"urlType": "WEB"
},
{
"url": "https://sitegpt.ai/login",
"urlType": "WEB"
},
{
"url": "https://sitegpt.ai/contact-us",
"urlType": "WEB"
},
{
"url": "https://sitegpt.ai/terms",
"urlType": "WEB"
}
]
}
示例代码
返回响应
成功(200)
请求有误(400)
没有权限(401)
禁止访问(403)
记录不存在(404)
服务器错误(500)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
success
boolean
必需
message
string
必需
data
object
必需
示例
成功示例
{
"success": true,
"message": "Added links to the chatbot successfully",
"data": {}
}
最后修改时间: 8 个月前