POST
/
api
/
aibot
/
create
curl --request POST \
  --url https://app.livechatai.com/api/aibot/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "my chatbot",
  "isLiveChatEnabled": true
}'

Authorizations

Authorization
string
header
required

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

Body

application/json
Chatbot creation details
name
string
required

Name of the chatbot to be created

Example:

"my chatbot"

isLiveChatEnabled
boolean
required

Flag to enable or disable live chat for the chatbot

Example:

true

Response

200
_mintlify/placeholder

Chatbot created successfully