# Delete Automation [View original](https://ittybit.com/api/automations/delete) `DELETE /automations/{id}` Permanently removes an automation from the system. This action cannot be undone. ### Parameters ```json [ { "in": "path", "name": "id", "required": true, "schema": { "type": "string", "example": "auto_abcdefgh1234" } } ] ``` ### Responses #### 202 - Accepted **Example:** ```json { "meta": { "request_id": "req_abcdefghij1234567890", "org_id": "org_abcdefgh1234", "project_id": "prj_abcdefgh1234", "version": "2025-01-01", "type": "object" }, "data": { "message": "Automation auto_abcdefgh1234 deleted" }, "error": null, "links": { "parent": "https://api.ittybit.com/automations" } } ```