Works with both data modeling and asset-centric projects.You can reference time series using
instanceIds (DM) or timeSeriesIds (asset-centric) when creating subscriptions.What you can do
- Create subscriptions — Register an interest in one or more time series.
- Retrieve incremental updates — Fetch only the data points that have changed since your last query.
- Build real-time pipelines — Use subscriptions as the foundation for streaming or event-driven data processing.
Creating subscriptions
Subscriptions support two ways to specify which time series to track:| Project type | Parameter | Description |
|---|---|---|
| Data modeling | instanceIds | Array of { space, externalId } objects identifying DM time series |
| Asset-centric (legacy) | timeSeriesIds | Array of external IDs (strings) |
Data modeling example
Asset-centric example
Key concepts
Subscriptions support incremental data retrieval, making them efficient for real-time data pipelines. You avoid repeatedly querying full time ranges when only new data has arrived.Data point subscriptions are ideal for dashboards, alerting systems, and ETL pipelines that need to stay synchronized with the latest time series data.