Skip to content

List metric watches on an artifact

GET
/v1/metric-watch
curl --request GET \
--url 'https://shareout.site/v1/metric-watch?artifact_id=example' \
--header 'Authorization: Bearer <token>'
artifact_id
required
string

Watches for the artifact

Media type application/json
object
watches
Array
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
{
"watches": [
{
"kind": "count",
"threshold_pct": 20
}
]
}

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
}