Object

IssueRecord

A persistent issue record — one logical issue tracked across scans.

Fields

confidence(): IssueRecordConfidence!
Indicates how confident Burp Scanner is that the identified issue is a genuine vulnerability. This reflects the inherent reliability of the technique that was used to identify the issue.
Per-occurrence detail fields for this issue record — caption, description, remediation, and evidence. Expensive to resolve; omit from list queries.
display_status(): IssueRecordDisplayStatus!
The effective status, computed from scanner_status, team_status, and scan history.
first_seen(): Timestamp!
Timestamp of the first time this issue record was detected.
id(): ID!
Unique numeric ID for this issue record.
issue_type(): IssueRecordIssueType!
The type of issue, for example, an SQL injection vulnerability.
last_seen(): Timestamp!
Timestamp of the most recent time this issue record was detected.
origin(): String
The host on which the issue was found.
path(): String
The URL path at which the issue was found, excluding the query string.
scanner_status(): IssueRecordScannerStatus!
Scanner-determined status.
severity(): Severity!
Indicates how dangerous the identified issue is. The higher the severity level, the larger the impact is likely to be if an attacker is able to exploit this vulnerability.
The site this issue record belongs to.
team_status(): IssueRecordTeamStatus!
Status set by the user.
Tickets currently linked to this issue record in external integrations (Jira, GitLab, Trello), and their per-integration counts.

Example

Query
query GetIssueRecord($id: ID!) {
  issue_record(id: $id) {
    id
    issue_type {
      type_index
      name
    }
    severity
    confidence
    origin
    path
    site {
      id
      name
    }
    team_status
    scanner_status
    display_status
    first_seen
    last_seen
    details {
      caption
      description_html
      remediation_html
    }
    tickets {
      counts {
        jira
        gitlab
        trello
      }
    }
  }
}
Variables
{
  "id": "42"
}
Result
{
  "data": {
    "issue_record": {
      "id": "42",
      "issue_type": {
        "type_index": "1049088",
        "name": "SQL injection"
      },
      "severity": "high",
      "confidence": "certain",
      "origin": "https://example.com",
      "path": "/products",
      "site": {
        "id": "5",
        "name": "Example Site"
      },
      "team_status": "unset",
      "scanner_status": "present",
      "display_status": "present",
      "first_seen": "2025-01-15T09:30:00Z",
      "last_seen": "2025-02-01T04:00:00Z",
      "details": {
        "caption": "/products",
        "description_html": "...",
        "remediation_html": "..."
      },
      "tickets": {
        "counts": {
          "jira": 1,
          "gitlab": 0,
          "trello": 0
        }
      }
    }
  }
}