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