Investigation User Notes

post

Add a new investigation note

Authorizations
AuthorizationstringRequired
Path parameters
investigation_idintegerRequired
Body
textstringOptional
Responses
200

New investigation note

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

{
  "text": "text"
}
{
  "created_at": "2025-11-25T12:45:07.188Z",
  "id": 1,
  "investigation": 1,
  "text": "text",
  "updated_at": "2025-11-25T12:45:07.188Z",
  "user": {
    "email": "[email protected]",
    "first_name": "text",
    "id": 1,
    "last_name": "text",
    "oidc_user_id": "text",
    "role": "admin"
  }
}
get

List user notes for an investigation

Authorizations
AuthorizationstringRequired
Path parameters
investigation_idintegerRequired
Responses
200

Investigation user notes

application/json
get
/app/api/v1/investigation-user-notes/{investigation_id}/list
GET /app/api/v1/investigation-user-notes/{investigation_id}/list HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
[
  {
    "created_at": "2025-11-25T12:45:07.188Z",
    "id": 1,
    "investigation": 1,
    "text": "text",
    "updated_at": "2025-11-25T12:45:07.188Z",
    "user": {
      "email": "[email protected]",
      "first_name": "text",
      "id": 1,
      "last_name": "text",
      "oidc_user_id": "text",
      "role": "admin"
    }
  }
]
delete

Delete an investigation note

Authorizations
AuthorizationstringRequired
Path parameters
investigation_note_idintegerRequired
Responses
200

Delete success

No content

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

No content

patch

Update an investigation note

Authorizations
AuthorizationstringRequired
Path parameters
investigation_note_idintegerRequired
Body
textstringOptional
Responses
200

Updated investigation note

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

{
  "text": "text"
}
{
  "created_at": "2025-11-25T12:45:07.188Z",
  "id": 1,
  "investigation": 1,
  "text": "text",
  "updated_at": "2025-11-25T12:45:07.188Z",
  "user": {
    "email": "[email protected]",
    "first_name": "text",
    "id": 1,
    "last_name": "text",
    "oidc_user_id": "text",
    "role": "admin"
  }
}

Last updated

Was this helpful?