The Fabric Pipeline job type runs a Microsoft Fabric Data Pipeline
item via POST /workspaces/{wsId}/items/{itemId}/jobs/instances?jobType=Pipeline.
The pipeline is identified by its item ID — Polysync stores that
ID in the Job's External Id.
This job type is supported on the Microsoft Fabric platform.
Fabric Pipeline (set automatically on import).GET /workspaces/{workspaceId}/items?type=DataPipeline (paginated).
Input + Input&Output parameters are sent as a flat key-value map:
{
"executionData": {
"parameters": {
"<name1>": "<value1>",
"<name2>": "<value2>"
}
}
}
| Direction | Sent in jobs/instances |
Updated from response |
|---|---|---|
Input |
✅ | ❌ |
Output |
❌ | ❌ (not supported) |
Input&Output |
✅ | ❌ (not supported) |
Output parameters are not supported.
Unlike Fabric Notebook, the Pipeline endpoint does not accept a per-parameter
typefield — the pipeline definition coerces values based on its declared parameter types.
Same as Fabric Notebook:
jobs/instances?jobType=Pipeline.GET .../jobs/instances/{instanceId} (same status table).POST /jobs/instances/{instanceId}/cancel.https://app.fabric.microsoft.com/groups/{workspaceId}/datapipelines/{itemId}