DELETE /agents/configs/{config_id}
Delete an agent, by id or by the agent's name.
The agent stops running and its name is freed immediately; its past sessions remain readable. Only for agents managed through this API — delete the file to remove one defined by a repository.
curl -X DELETE "https://api.ellipsis.dev/v1/agents/configs/{config_id}" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.agents.configs.delete("...")
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.agents.configs.delete('...');
console.log(result);Request
config_idstringrequired