Investigation User Notes
post
Add a new investigation note
Authorizations
AuthorizationstringRequired
Path parameters
investigation_idintegerRequired
Body
textstringOptional
Responses
200
New investigation note
application/json
400
Bad request - invalid input
application/json
401
Unauthorized
application/json
403
Access denied
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"
}{
"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
400
Bad request - invalid input
application/json
401
Unauthorized
application/json
403
Access denied
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: */*
[
{
"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
401
Unauthorized
application/json
403
Access denied
application/json
404
Resource 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
AuthorizationstringRequired
Path parameters
investigation_note_idintegerRequired
Body
textstringOptional
Responses
200
Updated investigation note
application/json
400
Bad request - invalid input
application/json
401
Unauthorized
application/json
403
Access denied
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"
}{
"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?