Forum Discussion
Anonymous
2 years agoNot applicable
Execute Data Pipeline Via API
I have been attempting to execute a fabric data factory data pipeline via rest API from a synapse pipeline with no success. Has anyone done this? Is this possible currently? I thought I could do this...
- Anonymous2 years ago
Hello Anonymous ,
The Job Scheduler API is missing documentation when it comes to the jobType parameter. If you are trying to run a Data Pipeline on demand, don't use DefaultJob like this.
/jobs/instances?jobType=DefaultJob
Instead, use Pipeline like this.
/jobs/instances?jobType=Pipeline
PanuO
1 year agoHelper II
Microsoft has published Fabric data pipeline public REST API (Preview) - Microsoft Fabric | Microsoft Learn guide, but I cannot get that Run on-demand item job thing working. It just returns 403.
TOPsDEV
1 year agoNew Member
I've got this to work. Just make a custom connector and that one respect the 202 response and will poll for status after 60 seconds.