Skip to main content
GET
/
v1
/
{org_uid}
/
assets
/
{asset_uid}
/
vulns
Returns list of exploitable vulnerabilities on a given organization and asset uid
curl --request GET \
  --url https://client.synack.com/api/streaming/v1/{org_uid}/assets/{asset_uid}/vulns \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "attributes": "<unknown>",
    "id": "<string>",
    "links": {
      "next": "<string>",
      "prev": "<string>"
    },
    "meta": "<unknown>",
    "relationships": {},
    "type": "asset_list"
  },
  "errors": [
    {
      "detail": "<string>",
      "id": "<string>",
      "source": "<string>",
      "status": 123,
      "title": "<string>"
    }
  ],
  "included": [
    "<unknown>"
  ],
  "links": {
    "next": "<string>",
    "prev": "<string>"
  },
  "meta": "<unknown>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

org_uid
string
required

Organization UID

asset_uid
string
required

Asset UID

Query Parameters

statuses[]
string[]

Vulnerability status

vuln_cvss[]
string[]

Vulnerability CVSS range [0.0-0.0, 0.1-3.9, 4.0-6.9, 7.0-8.9, 9.0-10.0]

patch_verification[]
string[]

Patch verification status [requested failed cancelled verified blocked]

order_by
enum<string>
default:severity

Order by [title, severity, created_at, status]

Available options:
title,
severity,
created_at,
status
order_direction
enum<string>
default:asc

Order direction [asc desc]

Available options:
asc,
desc
per_page
integer

Maximum number of results to be returned

page
integer

If provided, show the provided page

Response

OK

data
object
errors
object[]
included
any[]
meta
any