Skip to main content
POST
/
api
/
anomalies
/
sensitivity
Set a sensitivity override
curl --request POST \
  --url https://app.dacard.ai/api/anomalies/sensitivity \
  --header 'Content-Type: application/json' \
  --cookie __session= \
  --data '
{
  "eventType": "pr_cycle_time",
  "threshold": 3
}
'
{
  "ok": true
}

Authorizations

__session
string
cookie
required

Clerk session cookie. Authentication is handled by Clerk. Sign in at https://app.dacard.ai/sign-in to obtain a session.

Body

application/json
eventType
string
required

Signal event type identifier

Example:

"pr_cycle_time"

threshold
number
required

Sigma threshold for anomaly detection

Required range: 1 <= x <= 5
Example:

3

Response

Override saved

ok
boolean
Example:

true