Managing copilots via API
Delete a Copilot
Delete single copilot by ID
DELETE
/
backend
/
api
/
copilot
/
:id
Path
curl --location --request DELETE 'http://example.com/backend/api/copilot/:id'
{
"success": "chatbot_deleted"
}
Body
id
string
The uuid of the copilot
Response
success
string
Indicates whether the call was successful.
curl --location --request DELETE 'http://example.com/backend/api/copilot/:id'
{
"success": "chatbot_deleted"
}