Trigger and Monitor ADF Pipelines > Using the Trigger and Monitor ADF Pipelines recipe > Step 5. Invoke the processes
  

Step 5. Invoke the processes

You can invoke the ADF-TriggerPipeline process to trigger a pipeline using the Azure Resource Manager API for the specified resource group, factory, and pipeline. This invocation return a run ID, which you can then use to invoke the ADF-MonitorPipelineStatus process to monitor the pipeline’s status.
Trigger the ADF Pipeline
  1. 1Open the ADF-TriggerPipeline process and click Actions > Properties Details > Copy Service URL.
  2. 2Open a text editor and add the input fields and values to the service URL as shown in the following format:
  3. <Cloud Application Integration POD URL>/active-bpel/public/rt/<API_name>?in_resourceGroup=<Resource group where the target Data Factory resides>&in_factory=<Name of the target Data Factory instance>&in_pipelineName=<Name of the pipeline to run or monitor>
  4. 3Open a browser and paste the service URL.
  5. You will receive a run ID in the response.
Monitor the Pipeline Status
  1. 1Open the ADF-MonitorPipelineStatus process and click Actions > Properties Details > Copy Service URL.
  2. 2Open a text editor and add the input fields and values to the service URL as shown in the following format:
  3. <Cloud Application Integration POD URL>/active-bpel/public/rt/<API_name>?in_resourceGroup=<Resource group where the target Data Factory resides>&in_factory=<Name of the target Data Factory instance>&in_runId=<Run ID that you received after invoking the ADF-TriggerPipeline process>
  4. 3Open a browser and paste the service URL.
  5. You will receive a response that include details, such as start time, end time, pipeline name, and status.
You can also invoke these processes using the Run Using option, REST or SOAP API endpoints in API clients, such as cURL, Postman, SOAP UI, or through any programming language.