Skip to main content
GET
/
v1
/
chatbots
/
chatbot
/
{chatbotId}
/
follow-up-prompts
Get Follow-Up Prompts
curl --request GET \
  --url https://interhemispheric-unwet-paulene.ngrok-free.dev/api/v1/chatbots/chatbot/{chatbotId}/follow-up-prompts \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "data": [
      {
        "id": "<string>",
        "chatbotId": "<string>",
        "rank": 123,
        "esclate": true,
        "buttonTitle": "<string>",
        "buttonMessage": "<string>",
        "linkText": "<string>",
        "linkSrc": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z"
      }
    ],
    "count": 3
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

chatbotId
string
required

Response

Success

success
boolean
Example:

true

data
object