Skip to main content
POST
/
api
/
cases
/
bulk_findings
Bulk add findings to multiple cases
curl --request POST \
  --url http://localhost/api/api/cases/bulk_findings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "case_ids": [
    123
  ],
  "finding_content": "<string>"
}
'
"<unknown>"

Authorizations

Authorization
string
header
required

JWT token obtained from AWS Cognito or custom authentication service

Body

case_ids
integer[]
required

List of case IDs

finding_content
string
required

Finding content to add to all cases

Minimum string length: 1

Response

200 - application/json

Findings added successfully.