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

Chatbots

Update a chatbot

Change the chatbot’s name or refresh its training content. Settings (model, prompt, widget chrome) live under the sibling Update settings endpoint.

Endpoint

text
POST https://services.chatmount.co/v2/chatbots/update

Request body

json
{
  "chatbotId": "agent_abc123",
  "chatbotName": "Customer Support Bot",
  "sourceText": "Updated training snippet..."
}
  • chatbotId (required)
  • chatbotName (required, ≥ 3 chars)
  • sourceText (optional) — re-trains on the new content

Response

json
{
  "chatbotId": "agent_abc123"
}

Related