Investigation User Notes

post

Add a new investigation note

Authorizations
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"
}
{
  "id": 1,
  "user": {
    "id": 1,
    "first_name": "text",
    "last_name": "text",
    "email": "[email protected]",
    "role": "admin",
    "oidc_user_id": "text"
  },
  "created_at": "2025-11-02T16:20:56.035Z",
  "updated_at": "2025-11-02T16:20:56.035Z",
  "text": "text",
  "investigation": 1
}
get

List user notes for an investigation

Authorizations
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: */*
[
  {
    "id": 1,
    "user": {
      "id": 1,
      "first_name": "text",
      "last_name": "text",
      "email": "[email protected]",
      "role": "admin",
      "oidc_user_id": "text"
    },
    "created_at": "2025-11-02T16:20:56.035Z",
    "updated_at": "2025-11-02T16:20:56.035Z",
    "text": "text",
    "investigation": 1
  }
]
delete

Delete an investigation note

Authorizations
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
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"
}
{
  "id": 1,
  "user": {
    "id": 1,
    "first_name": "text",
    "last_name": "text",
    "email": "[email protected]",
    "role": "admin",
    "oidc_user_id": "text"
  },
  "created_at": "2025-11-02T16:20:56.035Z",
  "updated_at": "2025-11-02T16:20:56.035Z",
  "text": "text",
  "investigation": 1
}

Last updated

Was this helpful?