PATCH
/
v0
/
chatbots
/
{chatbotId}
/
quick-prompts
/
{promptId}
curl --request PATCH \
  --url https://sitegpt.ai/api/v0/chatbots/{chatbotId}/quick-prompts/{promptId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "quick prompt title",
  "link": "",
  "description": "quick prompt description"
}'
{
  "success": true,
  "message": "Updated quick 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

promptId
string
required

Id of the quick-prompt

Body

application/json

Request body to update the quick prompt

Request body

Response

200
application/json

OK

Success Response