Check Asset Criticality
GET/apm/api/v1/asset-criticality/:asset-id
Check an asset's criticality. You must have System Admin permissions to access this endpoint. Rate limit 15/sec
Request
Path Parameters
asset-id stringrequired
asset id
Example: asset id
Header Parameters
x-redlock-auth stringrequired
Authorize using Authentication token
Example: jwt token
Responses
- 200
- 401
- 403
- 404
- 429
OK
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
assetCriticality AssetCriticalityEnum (string)
Possible values: [critical
, high
, medium
, low
, none
]
{
"assetCriticality": "critical"
}
Unauthorized
Forbidden
No asset found with this ID
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
error object
code string
message string
target string
{
"error": {
"code": "string",
"message": "string",
"target": "string"
}
}
Too Many Requests
Loading...