Get Findings of an Asset
POST/asm/api/v1/asset/:asset_id/finding
Get the list of findings of an asset by asset id. Findings are security issues, including vulnerabilities discovered on the asset.
Request
Path Parameters
asset_id uuidrequired
ID of asset
Query Parameters
next_page_token string
- application/json
Body
snapshotDate int64
types List of types (string)[]
severities List of severities (string)[]
Possible values: [High
, Critical
, Medium
, Low
]
nextPageToken string
Responses
- 200
- 404
Ok
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
value object[]
name string
type string
source string
severity string
description string
nextPageToken string
{
"value": [
{
"name": "string",
"type": "string",
"source": "string",
"severity": "string",
"description": "string"
}
],
"nextPageToken": "string"
}
Asset not found
- application/json
- Schema
- Example (from schema)
Schema
timestamp int64
status int32
message string
path string
{
"timestamp": 0,
"status": 0,
"message": "string",
"path": "string"
}
Loading...