Delete agent
Delete single agent base on uuid
Endpoint
DELETE / api / v1 / agent / {uuid} / delete
Authorization
Authorization: string Bearer <your_token>
Path
uuid string required
Request example
curl --location --request DELETE 'https://app.aichatbothub.com/api/v1/agent/{uuid}/delete' \
--header 'Authorization: Bearer <token>'
import requests
uuid = '<agent-uuid>'
url = f'https://app.aichatbothub.com/api/v1/agent/{uuid}/delete'
headers = {
'Authorization': 'Bearer <token>'
}
response = requests.delete(url, headers=headers)
if response.status_code == 200:
print("Request successful! agent deleted.")
else:
print("Request failed with status code:", response.status_code)
print(response.text)
const axios = require('axios');
const uuid = '<agent-uuid>'
const url = `https://app.aichatbothub.com/api/v1/agent/${uuid}/delete`;
const headers = {
'Authorization': 'Bearer <token>'
};
axios.delete(url, { headers })
.then(response => {
console.log('Request successful! agent deleted.');
})
.catch(error => {
console.error('Request failed:', error);
});
Response
success boolean
Indicates if api call was successful
Response example