Skip to main content
PUT
/
v2
/
risk
/
config
Update the workspace risk configuration (partial)
curl --request PUT \
  --url https://api.range.org/v2/risk/config \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "exposure_signals": [
    {
      "signal": "<string>",
      "enabled": true,
      "weight": 5,
      "threshold": 123,
      "time_window": "<string>"
    }
  ],
  "behaviours": [
    {
      "behaviour": "<string>",
      "enabled": true,
      "weight": 5,
      "confidence_threshold": 0.5,
      "ignore": true
    }
  ],
  "tier_thresholds": {
    "severe": 50,
    "high": 50,
    "medium": 50
  },
  "defaults": {
    "time_window": "<string>",
    "dust_threshold_usd": 123
  }
}
'
{
  "workspace_id": "ws-12345",
  "exposure_signals": [
    {
      "signal": "sanctions_ofac",
      "enabled": true,
      "weight": 10,
      "mode": "binary",
      "threshold": 5,
      "time_window": "90d",
      "severity": "severe"
    }
  ],
  "behaviours": [
    {
      "behaviour": "smurfing",
      "enabled": true,
      "weight": 7,
      "confidence_threshold": 0.7,
      "ignore": false,
      "severity": "high"
    }
  ],
  "tier_thresholds": {
    "severe": 80,
    "high": 60,
    "medium": 30
  },
  "defaults": {
    "time_window": "90d",
    "dust_threshold_usd": 1
  },
  "updated_at": "2026-05-18T10:00:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.range.org/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Body

application/json
exposure_signals
object[]
behaviours
object[]
tier_thresholds
object
defaults
object

Response

200 - application/json
workspace_id
string
required
Example:

"ws-12345"

exposure_signals
object[]
required
behaviours
object[]
required
tier_thresholds
object
required
defaults
object
required
updated_at
string
required
Example:

"2026-05-18T10:00:00Z"

Last modified on May 19, 2026