Added
Occurrence comments
20 days ago by Mike Jarrett
Issues API — List comments on an occurrence
You can now retrieve the comments on an occurrence (a specific instance of an issue found on one of your targets). Comments are returned newest first, with pagination matching other list endpoints.
Endpoint: GET /v1/issues/{issue_id}/occurrences/{occurrence_id}/comments/
Each comment includes:
content— The comment text.user— The email address of the author, ornullfor comments written by Intruder's AI.commenter_type— Who wrote the comment. One of:user,greg_ai.created_at/edited_at— When the comment was created and last edited.edited_atisnullif the comment has never been edited.
Issues API — Add a comment to an occurrence
You can now add a comment to an occurrence. The newly created comment is returned in the same shape as the list endpoint above.
Endpoint: POST /v1/issues/{issue_id}/occurrences/{occurrence_id}/comments/
content— The comment text. Required. Up to 10,000 characters.
For more information, see the API documentation for List comments for an occurrence and Add a comment to an occurrence.
