Skip to main content
PATCH
/
api
/
v0
/
repositories
/
{repo_id}
/
findings
/
{finding_ref}
/
escalate
Escalate an existing finding in a repository and make a comment explaining why.
curl --request PATCH \
  --url https://api.example.com/api/v0/repositories/{repo_id}/findings/{finding_ref}/escalate \
  --header 'Content-Type: application/json' \
  --data '
{
  "commentContent": "<string>"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Documentation Index

Fetch the complete documentation index at: https://docs.cantina.xyz/llms.txt

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

Path Parameters

repo_id
string<uuid>
required
finding_ref
required

Reference to a finding, either a finding id or finding number.

Body

application/json
commentContent
string
required

Comment will always created as a new thread (i.e. parent set to null) and as a publicly visible comment (i.e. visibility set to public).

Response

Finding escalated, returns the id of the comment

id
string<uuid>
required