curl --request PATCH \
--url http://localhost:3333/v1/findings/{id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"status": "open",
"type": "soc2",
"content": "The uploaded evidence does not clearly show the Organization Name or URL."
}
'Update a finding. Status transition rules apply based on user role.
curl --request PATCH \
--url http://localhost:3333/v1/findings/{id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"status": "open",
"type": "soc2",
"content": "The uploaded evidence does not clearly show the Organization Name or URL."
}
'API key for authentication
Organization ID (required for session auth, optional for API key auth)
Finding ID
"fnd_abc123"
Finding update data
Finding status
open, ready_for_review, needs_revision, closed Type of finding (SOC 2 or ISO 27001)
soc2, iso27001 Finding content/message
5000"The uploaded evidence does not clearly show the Organization Name or URL."
The updated finding
Was this page helpful?