# Delete File [View original](https://ittybit.cloud/api/files/delete) `DELETE /files/{id}` Permanently removes a file from the system. This action cannot be undone. ### Parameters ```json [ { "$ref": "#/components/parameters/AcceptVersionHeader" }, { "in": "path", "name": "id", "required": true, "schema": { "type": "string", "example": "file_abcdefgh1234" } } ] ``` ### Responses #### 202 - Accepted **Example:** ```json { "message": "file_abcdefgh1234 deleted" } ```