v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

List notes for issue group

List notes for an issue group

get/issues/groups/{issue_group_id}/notes

Path parameters

issue_group_idinteger required

The id of the issue group

Query parameters

include_personal_notesboolean

Whether to include personal notes. Default is false

Response

The notes for the issue group have been successfully listed

idinteger

the ID of the note

notestring

the content of the note

cve_idstring

the CVE ID related to the note. When the not is not related to a CVE, this is null

created_by_idinteger

the ID of the user who created the note. When the note was created via the public API, this is -1

created_by_namestring

the name of the user who created the note. When the note was created via the public API, this is 'Public API'

created_atinteger

the timestamp of the note creation

Example response

{
  "id": 1,
  "note": "Note added via public API",
  "cve_id": "CVE-2026-12345",
  "created_by_id": -1,
  "created_by_name": "Public API",
  "created_at": 1751638869
}