Investigation User Notes
post
Add a new investigation note
Authorizations
Path parameters
investigation_idintegerRequired
Body
textstringOptional
Responses
200
New investigation note
application/json
400
Bad request
application/json
401
No user on API key
application/json
404
Investigation not found
application/json
500
System error
application/json
503
System not ready for requests
application/json
post
/app/api/v1/investigation-user-notes/{investigation_id}/createPOST /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
404
Investigation not found
application/json
500
System error
application/json
503
System not ready for requests
application/json
get
/app/api/v1/investigation-user-notes/{investigation_id}/listGET /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
401
No user on API key
application/json
403
User can only delete their own notes, unless admin
application/json
404
Investigation note not found
application/json
500
System error
application/json
503
System not ready for requests
application/json
delete
/app/api/v1/investigation-user-notes/{investigation_note_id}/deleteDELETE /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
400
Bad request
application/json
401
No user on API key
application/json
403
User can only update their own notes
application/json
404
Investigation note not found
application/json
500
System error
application/json
503
System not ready for requests
application/json
patch
/app/api/v1/investigation-user-notes/{investigation_note_id}/updatePATCH /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?