Skip to main content
POST
/
v1
/
findings
/
{finding_id}
/
status
Update Finding Status
curl --request POST \
  --url https://api.mindfort.app/v1/findings/{finding_id}/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "ACTIVE"
}
'
{
  "finding_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "ACTIVE",
  "updated": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.mindfort.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key generated from the MindFort dashboard. Pass as Authorization: Bearer <your-api-key>.

Path Parameters

finding_id
string<uuid>
required

UUID of the finding

Body

application/json
status
enum<string>
required

New finding workflow status

Available options:
ACTIVE,
RESOLVED,
ARCHIVED

Response

Finding status updated successfully

finding_id
string<uuid>

UUID of the updated finding

status
enum<string>

Updated finding workflow status

Available options:
ACTIVE,
RESOLVED,
ARCHIVED
updated
boolean

Whether the update succeeded