Chatbots
Create a new chatbot
Provision a new chatbot via API. Today this is dashboard-only — the contract below is the design spec for a future v2 endpoint.
Endpoint
text
POST https://services.chatmount.co/v2/chatbotsRequest body
json
{
"chatbotName": "Customer Support Bot",
"sourceText": "Welcome to our company..."
}chatbotName(string, required) — minimum 3 characterssourceText(string, optional) — initial training content (text snippet)
Response
json
{
"chatbotId": "agent_abc123"
}Errors
400— invalid request data (e.g. name too short)401— no API key provided403— quota exceeded for chatbot creation500— server error
Related