Microsoft Power Automate · Arazzo Workflow
Microsoft Power Automate Safely Update a Live Flow
Version 1.0.0
Stop a running flow, update its definition, restart it, and verify the result.
View Spec
View on GitHub
AutomationBusiness ProcessIntegrationLow-CodeMicrosoftPower PlatformRPAWorkflowArazzoWorkflows
Provider
Workflows
safe-update-flow
Apply a definition change to a running flow with a stop/update/start cycle.
Captures the flow's current state, deactivates it, applies the update, reactivates it, and verifies the flow is running again with the new definition in place.
1
readCurrentFlow
getFlow
Read the flow before touching it, capturing the current state and definition summary so the change can be compared and the prior state restored.
2
stopFlow
turnOffFlow
Deactivate the flow so its trigger stops firing while the definition is being replaced.
3
applyUpdate
updateFlow
Patch the flow with the new display name and definition. The flow is left Stopped by this request; the next step is what brings it back up.
4
startFlow
turnOnFlow
Reactivate the flow now that the new definition is in place.
5
confirmFlowRestarted
getFlow
Read the flow back and assert it is Started, so the update never silently leaves a production flow deactivated.