v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

Get issue group detail

Returns the details of an issue group

get/issues/groups/{issue_group_id}

Path parameters

issue_group_idinteger required

The unique ID of the issue group

Response

An issue group

idinteger required

The issue group ID.

titlestring required

A human readable title for this issue group.

descriptionstring nullable required

A small description of this issue.

type'open_source' | 'leaked_secret' | 'cloud' | 'iac' | 'sast' | 'surface_monitoring' | 'malware' | 'eol' | 'scm_security' | 'ai_pentest' | 'license' required

The type of issues in this group.

severity_scoreinteger required

A number indicating the importance of the vulnerability, this is based on all of the open issues for the issue group

severity'critical' | 'high' | 'medium' | 'low' required

A human friendly version of the issue's importance, this is based on all of the open issues for the issue group

group_status'new' | 'todo' | 'task_open' | 'task_closed' | 'pull_request_open' required

The current status of the issue group.

time_to_fix_minutesinteger required

The estimated time in minutes that it will take to fix this issue

how_to_fixstring

A string explaining how to fix the issue

related_cve_idsstring[]

A list of CVE id's related to this issue group.

Example response

{
  "id": 24,
  "type": "open_source",
  "title": "firefox-esr",
  "description": "Attacker can trigger memory corruption leading to crash or remote code execution",
  "time_to_fix_minutes": 30,
  "group_status": "new",
  "priority": 90,
  "severity": "critical",
  "locations": [
    {
      "id": 1,
      "name": "REST API service",
      "type": "code_repository"
    },
    {
      "id": 1,
      "name": "Cloud infrastructure",
      "type": "cloud"
    },
    {
      "id": 1,
      "name": "pied-piper/rest-api",
      "type": "container_repository"
    }
  ],
  "how_to_fix": "You can fix this issue by ...",
  "related_cve_ids": [
    "CVE-2024-8385",
    "CVE-2024-8381",
    "CVE-2024-8381"
  ]
}