Skip to main content
DELETE
https://backend.anglera.com
/
sheets
/
{id}
Delete Sheet
curl --request DELETE \
  --url https://backend.anglera.com/sheets/{id} \
  --header 'X-Anglera-API-Key: <api-key>'
Archives a sheet, removing it from the active list. This is a soft delete — the sheet and its data are preserved but will no longer appear in List Sheets.

Request

curl -X DELETE "https://backend.anglera.com/sheets/100" \
  -H "X-Anglera-API-Key: your_api_key"

Path Parameters

id
integer
required
ID of the sheet to delete

Response

Example Response
{
  "message": "Sheet deleted successfully"
}