v75

OpenAPI 3.1.0Proprietaryraw.githubusercontent.com2026-07-21931,1281.5 MB
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

category_overridesobject

Risk score overrides by category name. Pass a value in [0, 1] to set an override, or null to revert to the platform default.

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
    }
  ]
}