Get Asset Findings Filter
POST/asm/api/v1/asset/:asset_id/finding/filters
Get the list of filters and their possible values based on which you can retrieve the findings of an asset.
Request
Path Parameters
asset_id uuidrequired
ID of asset
- 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
types string[]
severities string[]
{
"types": [
"string"
],
"severities": [
"string"
]
}
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...