获取后续提示
GET
/api/v0/chatbots/{chatbotId}/follow-up-prompts/{followUpPromptId}获取聊天机器人的后续提示。
请求参数
Path 参数
chatbotId
string
必需
聊天机器人的 ID
followUpPromptId
string
后续提示Id
Header 参数
Authorization
string
必需
示例值:
Bearer <token>
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
success
boolean
必需
指示这是成功响应还是错误响应
message
string
必需
有关所执行操作的总体消息
data
object
跟进提示
id
string
后续提示的 ID。
title
string
必需
后续提示的标题。这是在聊天机器人中显示为按钮的文本。
description
string
必需
后续提示的描述。这是当您单击聊天机器人内的后续提示时将发送到聊天机器人的消息。
isEscalationPrompt
boolean
必需
指示后续提示是否为升级提示。
示例
{
"success": true,
"message": "Fetched follow-up prompt of the chatbot successfully",
"data": {
"id": "fd0bfc2d-2ea6-41dc-afb9-7a3ea7b2b729",
"title": "Test Bot",
"description": "This is a test chatbot",
"isEscalationPrompt": false
}
}
最后修改时间: 8 个月前