Inventaire des Sources
Lists all data sources connected to the workspace with their status, configuration, and synchronization statistics.
Parameters
| Parameter | Type | Required | Variable | Description |
|---|---|---|---|---|
sourceType | text | No | No | Filter by data source type (e.g. airbyte, webhook, http_polling). |
status | text | No | No | Filter by source status (active, error, syncing). |
includeStats | boolean | No | No | Include detailed statistics (stream counts, sync counts). (Default: false) |
includeEntities | boolean | No | No | Include ontology entities linked to the sources. (Default: false) |
outputVariable | text | No | No | Output variable name containing the sources inventory. |
Output
Output variable : sourcesResult
{
"sources": [],
"summary": {}
}
Example
Inventory active data sources.
Input :
{}
Output :
{"sources": [{"id": "src-1", "name": "CRM Salesforce", "type": "airbyte", "status": "active"}], "count": 1}
Tip
Useful for monitoring and audit workflows. Combine with a filter to keep only sources with errors.