get_vulnerability_notes
Retrieve all analyst notes and comments attached to a vulnerability to access context, analysis findings, and collaboration history.
Instructions
Get all notes and comments associated with a vulnerability.
Retrieves all analyst notes, comments, and annotations attached to a specific vulnerability. Notes provide context, analysis findings, remediation steps, and collaboration history.
Args: vulnerability_id: The unique identifier of the vulnerability.
Returns: List of notes in JSON format, each containing: - id: Unique note identifier - vulnerabilityId: Associated vulnerability identifier - text: Note content/message - author: User information {id, email, fullName, deleted} - createdAt: ISO timestamp when note was created - updatedAt: ISO timestamp when note was last updated (if applicable)
Notes are typically ordered by creation time (newest first).Common Use Cases: - Vulnerability analysis documentation - Tracking security team findings and decisions - Audit trail for vulnerability handling - Knowledge sharing between security analysts - Compliance and reporting requirements
Raises: RuntimeError: If there's an error retrieving vulnerability notes. ValueError: If vulnerability_id is invalid or empty.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| vulnerability_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |