v1

latestOpenAPI 3.0.32026-07-13201451.3 KB
Chatbots

Create a new chatbot

Creates a new chatbot with training data from text

post/create-chatbot

Request body

chatbotNamestring required

Name of the chatbot (minimum 3 characters)

sourceTextstring

Raw text content to train the chatbot

Example request

{
  "chatbotName": "Customer Support Bot",
  "sourceText": "Welcome to our company..."
}

Response

Chatbot created successfully

chatbotIdstring

Unique identifier for the created chatbot

Example response

{
  "chatbotId": "ckl123abc456"
}