DELETE /automations/{automation_id}
Delete an automation, by id or by name.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| DELETE | /v1/automations/{automation_id} |
It stops running and its name is freed immediately; its past sessions remain readable. Only for automations managed through this API — delete the file to remove one defined by a repository.
Path parameters
automation_idstringrequired
curl -X DELETE "https://api.ellipsis.dev/v1/automations/{automation_id}" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.automations.delete("...")
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.automations.delete('...');
console.log(result);