Skip to main content
PUT
/
api
/
v4
/
kyt
/
risk-profiles
/
{id}
Update a risk profile
curl --request PUT \
  --url https://api.example.com/api/v4/kyt/risk-profiles/{id} \
  --header 'Content-Type: application/json' \
  --header 'ds-api-token: <api-key>' \
  --data '
{
  "name": "Standard",
  "thresholds": [
    {
      "amount": 100,
      "assets": 0.01,
      "currency": "usd",
      "is_active_for_monitoring": true,
      "type": "SANCTIONS"
    }
  ]
}
'
{
  "message": "<string>"
}

Authorizations

ds-api-token
string
header
required

API token passed in the request header.

Path Parameters

id
string
required

Risk profile identifier.

Body

Request body for kyt.UpdateRiskProfileRequest

UpdateRiskProfileRequest schema

name
string
required
Maximum string length: 30
Example:

"Standard"

thresholds
object[]

Response

OK