DELETE https://www.chatbase.co/api/v1/delete-chatbot-icon
chatbotId
curl --request DELETE \ --url https://www.chatbase.co/api/v1/delete-chatbot-icon \ --header 'accept: application/json'
import requests url = "https://www.chatbase.co/api/v1/delete-chatbot-icon" headers = {"accept": "application/json"} response = requests.delete(url, headers=headers) print(response.text)
const options = {method: 'DELETE', headers: {accept: 'application/json'}} fetch('https://www.chatbase.co/api/v1/delete-chatbot-icon', options) .then((response) => response.json()) .then((response) => console.log(response)) .catch((err) => console.error(err))
DELETE /api/v1/delete-chatbot-icon HTTP/1.1 Accept: application/json Host: www.chatbase.co
{ "message": "Chatbot icon deleted successfully." }