Organization Risk Config
Update organization risk configuration
Update your organization's risk exposure settings. Pass a category name or verdict level with a new value to override the platform default, or pass null to revert to the default. Any key you omit stays unchanged.
patch/v0/platform/organization/configuration/risk-exposure
Request body
Example request
{
"category_overrides": {
"sanctioned_entity": 0.7,
"stolen_funds": 0.5
},
"verdict_overrides": {
"warning": 0.3,
"high_risk": 0.6
}
}Response
Success
Example response
{
"categories": [
{
"category": "sanctioned_entity",
"default_risk_score": 0.9
}
],
"verdicts": [
{
"level": "warning",
"default_threshold": 0.26
}
]
}