Skip to main content
POST
/
model-monitor
/
v2
/
api
/
model
/
{model_id}
/
save-scheduler-query
Saves drift scheduler config for the model. The endpoint is behind the old backend's auth mechanism.
curl --request POST \
  --url https://api.example.com/model-monitor/v2/api/model/{model_id}/save-scheduler-query \
  --header 'Content-Type: application/json' \
  --header 'X-Domino-Api-Key: <api-key>' \
  --data '
{
  "config": [
    {
      "id": "<string>",
      "name": "<string>",
      "type": "<string>",
      "value": "<string>",
      "alertable": true,
      "algorithm": "<string>",
      "condition": {
        "operator": "<string>",
        "lower": 123,
        "upper": 123
      }
    }
  ]
}
'
true

Authorizations

X-Domino-Api-Key
string
header
required

Path Parameters

model_id
string
required

Identifier for the model to be updated.

Body

application/json
config
Feature Query · object[]
required

Response

The drift scheduler query was generated successfully.

The response is of type boolean.