Skip to main content
PUT
/
model-monitor
/
v2
/
api
/
setting
/
default
/
drift
Update the drift default settings.
curl --request PUT \
  --url https://api.example.com/model-monitor/v2/api/setting/default/drift \
  --header 'Content-Type: application/json' \
  --header 'X-Domino-Api-Key: <api-key>' \
  --data '
[
  {
    "name": "<string>",
    "alertCondition": {
      "operator": "<string>",
      "lower": 123,
      "upper": 123
    },
    "isActive": true
  }
]
'

Authorizations

X-Domino-Api-Key
string
header
required

Body

application/json
name
string
required

Name of the default setting.

alertCondition
Alert Condition · object
required

Condition at which alert is triggered

isActive
boolean

Whether the drift setting is the active drift default setting.

Response

Drift Default settings updated successfully.