Download Flow Run History [better] May 2026

If you only need to look at the last few hundred runs of a specific flow, the Power Automate portal has a built-in feature to get this data into Excel. Open the page for the specific flow. In the Run History section, click on See all .

You can use the Get-FlowRun command to pull detailed telemetry. A basic script looks like this: powershell download flow run history

Since flows are stored in Dataverse, you can use the Web API to query the flowrun table. If you only need to look at the

For enterprise-level logging, relying on manual downloads isn't sustainable. You can use the Get-FlowRun command to pull

This allows you to bypass the UI limitations and programmatically filter for specific error codes or date ranges. 4. Advanced: Dataverse and Azure Log Analytics

Get-FlowRun -EnvironmentName "Your-Env-ID" -FlowName "Your-Flow-ID" | Export-Csv -Path "C:\FlowHistory.csv" Use code with caution.