api/endpoints/notes-delete.md

Delete Note

Request

DELETE /api/v1/notes/:path

Example

curl -X DELETE http://localhost:3000/api/v1/notes/notes%2Fold.md \
  -H "X-Mino-Key: <API_KEY>"

Response

{
  "success": true,
  "data": {
    "deleted": "notes/old.md"
  }
}

Deletion is permanent.