Update chatbot
Update chatbot meta base on uuid
Endpoint
POST /api/v1/chatbot/{uuid}/update
Request
Authorization string Bearer <your_token>
Path
uuid string required
Body
name string
visibility string
rate_limit number[]
rate_limit_message string
show_citations boolean
Request example
curl --location --request POST 'https://app.aichatbothub.com/api/v1/chatbot/{uuid}/update' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data-raw '{
"name": "string"
"rate_limit": [
20,
240
],
"rate_limit_message": "Too many messages",
"show_citations": false,
"visibility": "private"
}'
import requests
uuid = '<chatbot-uuid>'
url = f'https://app.aichatbothub.com/api/v1/chatbot/{uuid}/update'
headers = {
'Content-Type': 'application/json',
'Authorization': 'Bearer <token>'
}
data = {
"name": "string",
"rate_limit": [20, 240],
"rate_limit_message": "Too many messages",
"show_citations": False,
"visibility": "private"
}
response = requests.post(url, headers=headers, json=data)
if response.status_code == 200:
print("Request successful!")
print(response.json())
else:
print("Request failed with status code:", response.status_code)
print(response.text)
const axios = require("axios");
const uuid = "<chatbot-uuid>";
const url = `https://app.aichatbothub.com/api/v1/chatbot/${uuid}/update`;
const headers = {
"Content-Type": "application/json",
Authorization: "Bearer <token>",
};
const data = {
name: "string",
rate_limit: [20, 240],
rate_limit_message: "Too many messages",
show_citations: false,
visibility: "private",
};
axios
.post(url, data, { headers })
.then((response) => {
console.log("Request successful!");
console.log(response.data);
})
.catch((error) => {
console.error("Request failed:", error);
});
Response
created_at string
modified_at string
name string
uuid string
meta object
rate_limit number[]
rate_limit_message string
show_citation boolean
visibility string
Response example
{
"created_at": "string",
"meta": {
"rate_limit": [20, 240],
"rate_limit_message": "Too many messages",
"show_citations": false,
"visibility": "private"
},
"modified_at": "string",
"name": "string",
"uuid": "string"
}
Last updated