Chatbot
Create Chatbot
API Documentation
Chatbot Appearance
Chatbot Custom Content
Chatbot Follow Up Prompts
Chatbot Icons
Chatbot Links
Chatbot Messages
Chatbot Personas
Chatbot Prompts
Chatbot Quick Prompts
Chatbot Settings
Chatbot Threads
Chatbot
Create Chatbot
Create a new chatbot
POST
/
v0
/
chatbots
curl --request POST \
--url https://sitegpt.ai/api/v0/chatbots \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"chatbotName": "Test Bot"
}'
{
"success": true,
"message": "<string>",
"data": {}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Request body to create the chatbot
Request body
Response
200
application/json
OK
Success Response
Was this page helpful?
curl --request POST \
--url https://sitegpt.ai/api/v0/chatbots \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"chatbotName": "Test Bot"
}'
{
"success": true,
"message": "<string>",
"data": {}
}