Watch / Unwatch Assets
Use this API to follow assets you care about most. Watching an asset ensures you are notified of changes or issues. For example, a product manager might watch the “active_users” table to be alerted whenever its schema changes, ensuring downstream dashboards are not broken.
⚠️ All endpoints require authentication. See Authentication & Headers.
Endpoint(s)
POST /catalog-server/api/assets/:id/watch
- Start WatchingDELETE /catalog-server/api/assets/:id/watch
- Stop WatchingPOST /catalog-server/api/assets/byUid/:uid/watch
- Watch by UIDDELETE /catalog-server/api/assets/byUid/:uid/watch
- Unwatch by UID
Path Parameters
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
id | integer | Yes | Asset ID | 12616 |
uid | string | Yes | Unique asset UID | sales.table |
Sample Request
curl -X POST "https://demo.acceldata.io/catalog-server/api/assets/12616/watch"
Response Schema
See Watched Asset Schema.
Was this page helpful?