Search code examples
triggersazure-data-factoryazure-logic-appspowerapps

Is it possible to trigger ADF pipeline from Power App?


I'm wondering if it is possible to trigger an Azure Data Factory pipeline from a Microsoft Power App, and if so, how would one go about configuring this?

  • I was unable to find a PowerApp connector trigger in Azure Data Factory
  • I was unable to find a PowerApp connector trigger in Azure Logic Apps
  • I have experience with Azure, but no experience in PowerApps

If you have any ideas or information for me that would be great.

Thanks!


Solution

  • You can trigger an Azure Data Factory pipeline using the REST API like this:

    The following sample command shows you how to run your pipeline by using the REST API manually:

    POST  
    https://management.azure.com/subscriptions/mySubId/resourceGroups/myResourceGroup/providers/Microsoft.DataFactory/factories/myDataFactory/pipelines/copyPipeline/createRun?api-version=2017-03-01-preview
    

    More information: Pipeline execution and triggers in Azure Data FactoryManual execution (on-demand)REST API