DELETE /agents/defaults
Clear a default agent config.
Addressed by rung: the account rung (repository omitted) or a repository rung. Refused for sandbox tokens.
curl -X DELETE "https://api.ellipsis.dev/v1/agents/defaults" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.agents.defaults.delete()
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.agents.defaults.delete();
console.log(result);Request
repositorystring
Repo rung to clear ("owner/name"); omit to clear the account default.