curl --request PATCH \
--url http://localhost:3333/v1/finding-template/{id} \
--header 'Content-Type: application/json' \
--data '
{
"category": "evidence_issue",
"title": "Issue with uploaded evidence",
"content": "The uploaded evidence does not clearly show the Organization Name or URL. Please provide a screenshot showing the context.",
"order": 0
}
'Update an existing finding template (Platform Admin only)
curl --request PATCH \
--url http://localhost:3333/v1/finding-template/{id} \
--header 'Content-Type: application/json' \
--data '
{
"category": "evidence_issue",
"title": "Issue with uploaded evidence",
"content": "The uploaded evidence does not clearly show the Organization Name or URL. Please provide a screenshot showing the context.",
"order": 0
}
'Finding template ID
"fnd_t_abc123"
Finding template update data
Category of the finding template
"evidence_issue"
Short title of the finding template
"Issue with uploaded evidence"
Full message content of the finding template
"The uploaded evidence does not clearly show the Organization Name or URL. Please provide a screenshot showing the context."
Display order for the template
0
The updated finding template
Was this page helpful?