Forum Discussion
undefined
I need to invoke an ADF pipeline through Web activity in fabric
So is it possible to do so
5 Replies
- AnonymousNot applicable
Hi Gunjan_kabra ,
Thanks for using Fabric Community.
I would like to suggest Azure Data Factory Rest API:
Pipelines - Create Run - REST API (Azure Data Factory) | Microsoft Learn
You can use Web Activity in Fabric to trigger the Rest API in ADF.
You can refer this link for insights: Invoke Azure Data Factory pipeline using Web activity | by Aprajita Kohli | Medium
Hope this is helpful. Please let me know incase of further queries.- AnonymousNot applicable
Hello Gunjan_kabra ,
We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet .
In case if you have any resolution please do share that same with the community as it can be helpful to others .
Otherwise, will respond back with the more details and we will try to help .- AnonymousNot applicable
Hi Gunjan_kabra ,
We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet. In case if you have any resolution please do share that same with the community as it can be helpful to others. Otherwise, will respond back with the more details and we will try to help .
- NandanHegdeSuper User
Hey,
Use Web activity and create a new connection :
In base URL use the below value :
https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/pipelines/{pipelineName}/createRun?api-version=2018-06-01
In token audience URI use :
and select the auth of either service principal or Org account
and post connection created,
Add a space in Body as some value is needed in Body for POST method
- NandanHegdeSuper User
hey,
the below blog explains in detail :
https://www.c-sharpcorner.com/article/invoke-azure-data-factory-pipeline-via-msft-fabric/