Investigation User Notes | Dropzone AI Documentation

API Documentation

POST /app/api/v1/investigation-user-notes/{investigation_id}/create

Add a new investigation note

Authorizations

Path parameters

Body

Responses

Example Request

POST /app/api/v1/investigation-user-notes/{investigation_id}/create HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 15

{
  "text": "text"
}

Example Response

{
  "created_at": "2026-07-27T03:06:08.246Z",
  "id": 1,
  "investigation": 1,
  "text": "text",
  "updated_at": "2026-07-27T03:06:08.246Z",
  "user": {
    "email": "name@gmail.com",
    "first_name": "text",
    "id": 1,
    "last_name": "text",
    "oidc_user_id": "text",
    "role": "admin"
  }
}

GET /app/api/v1/investigation-user-notes/{investigation_id}/list

List user notes for an investigation

Authorizations

Path parameters

Responses

Example Request

GET /app/api/v1/investigation-user-notes/{investigation_id}/list HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*

Example Response

[
  {
    "created_at": "2026-07-27T03:06:08.246Z",
    "id": 1,
    "investigation": 1,
    "text": "text",
    "updated_at": "2026-07-27T03:06:08.246Z",
    "user": {
      "email": "name@gmail.com",
      "first_name": "text",
      "id": 1,
      "last_name": "text",
      "oidc_user_id": "text",
      "role": "admin"
    }
  }
]

DELETE /app/api/v1/investigation-user-notes/{investigation_note_id}/delete

Delete an investigation note

Authorizations

Path parameters

Responses

No content

Example Request

DELETE /app/api/v1/investigation-user-notes/{investigation_note_id}/delete HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*

Example Response

No content

PATCH /app/api/v1/investigation-user-notes/{investigation_note_id}/update

Update an investigation note

Authorizations

Path parameters

Body

Responses

Example Request

PATCH /app/api/v1/investigation-user-notes/{investigation_note_id}/update HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 15

{
  "text": "text"
}