Version v0.44 of Metabase is no longer supported. Check out the docs for the current stable version, Metabase v0.63.
Notify
/api/notify/* endpoints which receive inbound etl server notifications.
POST /api/notify/db/:id
Notification about a potential schema change to one of our Databases.
Caller can optionally specify a :table_id or :table_name in the body to limit updates to a single
Table. Optional Parameter :scan can be "full" or "schema" for a full sync or a schema sync, available
regardless if a :table_id or :table_name is passed.
This endpoint is secured by an API key that needs to be passed as a X-METABASE-APIKEY header which needs to be defined in
the MB_API_KEY environment variable.
PARAMS:
-
id -
table_idvalue may be nil, or if non-nil, value must be an integer greater than zero. -
table_namevalue may be nil, or if non-nil, value must be a non-blank string. -
scanvalue may be nil, or if non-nil, value must be one of:full,schema.
Read docs for other versions of Metabase.