BetaThe v2 API is in beta — fields and behavior may change without notice. For stable production usage, see the API v1 Reference.

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/chatbots

Request body

json
{
  "chatbotName": "Customer Support Bot",
  "sourceText": "Welcome to our company..."
}
  • chatbotName (string, required) — minimum 3 characters
  • sourceText (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 provided
  • 403 — quota exceeded for chatbot creation
  • 500 — server error

Related