GET
/
appsec
/
issues
/
{issue_id}
curl --request GET \
  --url https://api.leen.dev/v1/appsec/issues/{issue_id} \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-CONNECTION-ID: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "code_repo": "<string>",
  "project_file_path": "<string>",
  "repo_url": "<string>",
  "repo_branch_name": "<string>",
  "vendor": "<string>",
  "vendor_id": "<string>",
  "name": "<string>",
  "package_name": "<string>",
  "package_version": "<string>",
  "severity": "INFO",
  "platform": "<string>",
  "package_manager": "<string>",
  "publication_time": "2023-11-07T05:31:56Z",
  "is_patchable": true,
  "remediation": [
    "<string>"
  ],
  "type": "VULNERABILITY",
  "description": "<string>",
  "vulnerability_identifiers": [
    {
      "type": "CVE",
      "value": "CVE-2021-34527"
    }
  ],
  "cvss_score": 123,
  "state": "OPEN",
  "first_seen": "2023-11-07T05:31:56Z",
  "last_seen": "2023-11-07T05:31:56Z",
  "kb_url": "<string>",
  "issue_url": "<string>",
  "vendor_data": {
    "finding_type": "cloud",
    "attack_surface_type": "backend",
    "attack_surface": {
      "id": 123,
      "name": "<string>",
      "external_repo_id": "<string>",
      "provider": "<string>",
      "active": true,
      "branch": "<string>"
    }
  },
  "state_updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

X-CONNECTION-ID
string
header
required
X-API-KEY
string
header
required

Path Parameters

issue_id
string
required

Response

200
application/json
Successful Response
id
string
required
code_repo
string
required
project_file_path
string
required
vendor
string
required
vendor_id
string
required
name
string
required
package_name
string
required
package_version
string
required
severity
enum<string>
required
Available options:
INFO,
LOW,
MEDIUM,
HIGH,
CRITICAL
package_manager
string
required
type
enum<string>
required
Available options:
VULNERABILITY,
LICENSE,
CLOUD,
CODE,
CUSTOM,
CONFIG
description
string
required
state
enum<string>
required
Available options:
OPEN,
CLOSED,
IGNORED,
DELETED
first_seen
string
required
last_seen
string
required
repo_url
string | null
repo_branch_name
string | null
platform
string | null
publication_time
string | null
is_patchable
boolean | null
remediation
string[] | null
vulnerability_identifiers
object[] | null
cvss_score
number | null
kb_url
string | null
issue_url
string | null
vendor_data
object | null
state_updated_at
string | null