Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowGet certified as a Fabric Data Engineer: Check your eligibility for a 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700. Get started
Hi All,
im trying to find a way to access a data Pipeline by run Id with the releate information about this run.
via a Data Pipeline or API?
Hope someone can point me in the right direction,
Kind regards,
Boy Drijvers
Solved! Go to Solution.
Hi @BoyDrijvers ,
You can access Pipeline Run Information via Azure Data Factory UI.
Navigate to your Azure Data Factory instance. In the left pane, select Monitor. Here, you'll find a list of pipeline runs. You can filter this list by the pipeline run ID to find the specific run you're interested in. Once you find the run, click on it to view detailed information, including activity runs, input/output, and any errors if the run failed.
You can also access Pipeline Run Information via Azure Data Factory REST API.
To get details about a specific pipeline run, you can use the Pipeline Runs - Get operation. You'll need to provide the resource group name, factory name, and the pipeline run ID. Here's an example of how to make this call:
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/pipelineruns/{runId}?api-version=2018-06-01
This will return detailed information about the pipeline run, including status, activity details, and more.
For more details on monitoring pipeline runs via the Azure Data Factory UI, you can refer to the Monitor Pipeline Runs documentation.
And to learn more about using the Azure Data Factory REST API for accessing pipeline run details, you can refer to this document.
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @BoyDrijvers ,
You can access Pipeline Run Information via Azure Data Factory UI.
Navigate to your Azure Data Factory instance. In the left pane, select Monitor. Here, you'll find a list of pipeline runs. You can filter this list by the pipeline run ID to find the specific run you're interested in. Once you find the run, click on it to view detailed information, including activity runs, input/output, and any errors if the run failed.
You can also access Pipeline Run Information via Azure Data Factory REST API.
To get details about a specific pipeline run, you can use the Pipeline Runs - Get operation. You'll need to provide the resource group name, factory name, and the pipeline run ID. Here's an example of how to make this call:
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/pipelineruns/{runId}?api-version=2018-06-01
This will return detailed information about the pipeline run, including status, activity details, and more.
For more details on monitoring pipeline runs via the Azure Data Factory UI, you can refer to the Monitor Pipeline Runs documentation.
And to learn more about using the Azure Data Factory REST API for accessing pipeline run details, you can refer to this document.
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
for example: i want the response you get when you export To CSV. but in automatic way.