## Delete a file **delete** `/v1/files/{file_id}` Delete a file. This cannot be undone. ### Path Parameters - `file_id: string` The unique identifier of the file. ### Returns - `id: string` The unique identifier of the deleted file. - `deleted: true` Whether the file was successfully deleted. - `true` - `object: "file"` The object type, which is always 'file'. - `"file"` ### Example ```http curl https://api.deeptable.com/v1/files/$FILE_ID \ -X DELETE \ -H "Authorization: Bearer $DEEPTABLE_API_KEY" ``` #### Response ```json { "id": "file_01kfxgjd94fn9stqm414vjb0s8", "deleted": true, "object": "file" } ```