Fetch in-depth information about a single risk event
GET/v1/risk-events/{urn}
Fetch in-depth information about a single risk event
Path Parameters
urn: string
Returns
created_at: string
An ISO-8601-formatted timestamp representing when the risk event was created (UTC)
formatdate-time
description: string
The risk event's description
name: string
The risk event's display name
url: string
A URL with more information about the risk event
urn: string
A unique identifier for the risk event
Fetch in-depth information about a single risk event
curl https://developer.clarative.ai/v1/risk-events/$URN \
-H "Authorization: Bearer $CLARATIVE_API_KEY"{
"ai_risk_level_recommendation": {
"explanation": "explanation",
"recommended_risk_level": "LOW"
},
"created_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"name": "name",
"review_status": "PENDING",
"risk_level": "LOW",
"source_type": "STATUS_PAGE",
"url": "url",
"urn": "urn",
"vendor": {
"created_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"name": "name",
"urn": "urn"
}
}Returns Examples
{
"ai_risk_level_recommendation": {
"explanation": "explanation",
"recommended_risk_level": "LOW"
},
"created_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"name": "name",
"review_status": "PENDING",
"risk_level": "LOW",
"source_type": "STATUS_PAGE",
"url": "url",
"urn": "urn",
"vendor": {
"created_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"name": "name",
"urn": "urn"
}
}