PATCH
/
v0
/
chatbots
/
{chatbotId}
/
follow-up-prompts
/
{followUpPromptId}
Update Follow Up Prompt
curl --request PATCH \
  --url https://sitegpt.ai/api/v0/chatbots/{chatbotId}/follow-up-prompts/{followUpPromptId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "quick prompt title",
  "link": "",
  "description": "quick prompt description",
  "isEscalationPrompt": true
}'
{
"success": true,
"message": "Updated follow-up prompt of the chatbot successfully",
"data": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

chatbotId
string
required

Id of the chatbot

followUpPromptId
string
required

Id of the follow-up promptId

Body

application/json

Request body to update the follow-up prompt

Request Body

title
string

Title of the follow-up-prompt. This is the text that is shown as button in the chatbot.

Link of the follow-up prompt. If this link is added, then when you click on the follow-up prompt in the chatbot, this link will be opened instead of sending a message to the chatbot.

description
string

Description of the follow-up-prompt. This is the message that will be sent to the chatbot when you click on the follow-up-prompt inside the chatbot.

isEscalationPrompt
boolean

Indicates whether the follow-up prompt is an escalation prompt or not

Response

OK

Success Response

success
boolean

Indicates whether this is success response or error response

message
string

Overall message regarding the operation performed

data
object

Data returned from the server