For the complete documentation index, see llms.txt. This page is also available as Markdown.

Delete Note

Delete a note by UUID. Deleting a folder also deletes every note and subfolder inside it, and all version history for the deleted notes is removed.

DELETE /v1/notes/{uuid}

Path parameters

Parameter
Description

uuid

UUID of the note or folder to delete.

Response — 200 OK

Returns the deleted note (as it existed before deletion) plus the UUIDs of every note that was removed — for a folder, that includes all of its descendants:

{
  "data": {
    "case_note_id": 87,
    "uuid": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
    "note_tag": "Triage",
    "path": "/Triage",
    "parent_id": null,
    "is_folder": true,
    "created_on": "2026-07-28T10:00:00.000Z",
    "updated_on": "2026-08-01T11:30:00.000Z",
    "attachments": [],
    "linked_case": { "case_id": 42, "uuid": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d" },
    "linked_object": null,
    "created_by": { "user_id": 7, "email": "examiner@example.com", "first_name": "Alex", "last_name": "Rivera", "full_name": "Alex Rivera", "title": "Forensic Examiner" },
    "updated_by": null
  },
  "deleted_uuids": [
    "7c9e6679-7425-40de-944b-e07fc1f90ae7",
    "0f8fad5b-d9cb-469f-a165-70867728950e",
    "3d1f2c44-9b0a-4f7e-8c53-6a1e9d20b471"
  ]
}

deleted_uuids always includes the target itself. For a regular note it is a single-element array.

Examples

1

Delete a single note

2

Delete a folder, with a guard against surprises

Errors

Status
Body
Cause

404

{"message": "Note not found"}

No note with that UUID.

401

Unauthorized

Missing or invalid API key.

Was this helpful?