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

Get Note Users

List the distinct users who have authored notes. Filter by case, evidence item, or linked object to see who has written notes in a particular scope — for example, to build an author picker or an activity report.

GET /v1/notes/note-users

Query parameters

All optional. With no filters, every user who has authored any note is returned.

Parameter
Type
Description

case_uuid

string

Authors of notes in this case.

evidence_uuid

string

Authors of notes linked to this evidence item.

object_id

string

Authors of notes linked to this object (see object-links.md).

Response — 200 OK

{
  "data": [
    {
      "user_id": 7,
      "email": "examiner@example.com",
      "first_name": "Alex",
      "last_name": "Rivera",
      "full_name": "Alex Rivera",
      "title": "Forensic Examiner"
    },
    {
      "user_id": 12,
      "email": "api-user@example.com",
      "first_name": "API",
      "last_name": "User",
      "full_name": "API User",
      "title": null
    }
  ]
}

Examples

Who has written notes in a case?

Per-author note counts for a case

Errors

Status
Body
Cause

400

{"message": "Invalid query parameters", "errors": [...]}

Empty-string filter value.

401

Unauthorized

Missing or invalid API key.

Was this helpful?