Add Comment
Add a comment to a finding to document observations, questions, or triage decisions.This endpoint requires authentication. Comments are associated with the authenticated user.
Path Parameters
The unique UUID of the finding to comment on
Request Body
The comment text to add. Markdown formatting is preserved.
Response
Returns the created comment event.The finding event object representing the comment
Error Responses
404 Not Found
Returned when the specified finding does not exist.500 Internal Server Error
Returned when the comment cannot be created.List Events
Retrieve the complete event history for a finding, including status changes, severity updates, comments, patch applications, and AI reviews.Path Parameters
The unique UUID of the finding whose events should be retrieved
Response
Returns an array of all events associated with the finding, ordered chronologically.Array of finding events
Error Responses
500 Internal Server Error
Returned when the events cannot be retrieved.The events endpoint does not return a 404 error if the finding doesn’t exist. Instead, it returns an empty array. To verify a finding exists, use the Get Finding endpoint.
Event Types Reference
Here’s a complete reference of all event types you may encounter:status_change
status_change
Triggered when a finding’s triage status is updated. The
old_value and new_value fields contain the previous and new status values.severity_change
severity_change
Triggered when a finding’s severity level is modified. The
old_value and new_value fields contain the previous and new severity values.comment
comment
Triggered when a user adds a comment to a finding. The comment text is stored in the
comment field.patch_applied
patch_applied
Triggered when a security patch is marked as applied. The
new_value field contains the patch UUID.ai_explanation
ai_explanation
Triggered when AI generates a plain-language explanation of the finding. The
metadata field contains the AI’s analysis including summary, why it was flagged, what to review, and remediation focus.ai_verification
ai_verification
Triggered when AI performs a verification review to determine if the finding is a true positive. The
metadata field contains verdict, rationale, signals, and recommended status.issue_linked
issue_linked
Triggered when a repository issue (GitHub/GitLab) is linked to the finding. The
metadata field contains provider, issue URL, issue number, and creation status.