Skip to content

Create a metric watch

POST
/v1/metric-watch
curl --request POST \
--url https://shareout.site/v1/metric-watch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "artifact_id": "example", "table": "example", "kind": "count", "column": "example", "threshold_pct": 20 }'

One-click table watch — bell-only anomaly alerts (±threshold_pct vs baseline).

Media type application/json
object
artifact_id
required
string
table
required
string
kind
required
string
Allowed values: count sum last
column

Required for sum and last.

string
threshold_pct

Alert when value moves ±this percent from baseline.

number
default: 20

Watch created

Media type application/json
object
watch
object
artifact_id
required
string
table
required
string
kind
required
string
Allowed values: count sum last
column

Required for sum and last.

string
threshold_pct

Alert when value moves ±this percent from baseline.

number
default: 20
id
string
workspace_id
string
nullable
table_name
string
metric_kind
string
column_name
string
last_value
number
nullable
enabled
boolean
created_at
integer
Example
{
"watch": {
"kind": "count",
"threshold_pct": 20
}
}

Invalid request

Media type application/json
object
success
required
boolean
error
required

Human-readable message.

string
code
required

Machine-readable error code.

string
Example
{
"success": false
}

Authentication required

Media type application/json
object
success
required
boolean
error
required

Human-readable message.

string
code
required

Machine-readable error code.

string
Example
{
"success": false
}