{"id":45090,"date":"2026-07-03T18:01:40","date_gmt":"2026-07-03T12:31:40","guid":{"rendered":"https:\/\/www.inogic.com\/blog\/?p=45090"},"modified":"2026-07-03T18:01:40","modified_gmt":"2026-07-03T12:31:40","slug":"extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata","status":"publish","type":"post","link":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/","title":{"rendered":"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata"},"content":{"rendered":"<p><img decoding=\"async\" class=\"alignnone size-full wp-image-45095\" src=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Extending-Power-Automate-Run-History-Beyond-28-Days-Using-Cloud-Flow-Run-Metadata.png\" alt=\"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata\" width=\"1400\" height=\"800\" srcset=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Extending-Power-Automate-Run-History-Beyond-28-Days-Using-Cloud-Flow-Run-Metadata.png 1400w, https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Extending-Power-Automate-Run-History-Beyond-28-Days-Using-Cloud-Flow-Run-Metadata-300x171.png 300w, https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Extending-Power-Automate-Run-History-Beyond-28-Days-Using-Cloud-Flow-Run-Metadata-1024x585.png 1024w, https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Extending-Power-Automate-Run-History-Beyond-28-Days-Using-Cloud-Flow-Run-Metadata-768x439.png 768w, https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Extending-Power-Automate-Run-History-Beyond-28-Days-Using-Cloud-Flow-Run-Metadata-660x377.png 660w\" sizes=\"(max-width: 1400px) 100vw, 1400px\" \/>Power Automate has become the backbone for many business processes, integrations, and automation scenarios across the Power Platform ecosystem. From approval processes to large-scale integrations, organisations increasingly rely on cloud flows to power mission-critical workloads.<\/p>\n<p>Although Power Automate provides a comprehensive monitoring experience, one limitation quickly becomes apparent in production environments: <strong>cloud flow execution history is retained for only 28 days by default.<\/strong><\/p>\n<p>For many organisations, this introduces several operational challenges:<\/p>\n<ul>\n<li>Historical execution data is automatically removed after 28 days<\/li>\n<li>Troubleshooting failures that occurred months ago becomes difficult<\/li>\n<li>Long-term trend analysis is not possible<\/li>\n<li>SLA monitoring and compliance reporting become challenging<\/li>\n<li>Teams often resort to manual exports before execution history expires<\/li>\n<\/ul>\n<p>Initially, organisations attempt to overcome these limitations through manual exports, Power BI snapshots, or custom logging implementations. While these approaches provide temporary visibility, they often increase maintenance overhead and introduce fragmented monitoring experiences.<\/p>\n<p>To address this challenge, Microsoft introduced <strong>Cloud Flow Run Metadata in Dataverse<\/strong>, allowing organisations to persist cloud flow execution information beyond the default retention period.<\/p>\n<p>In this article, we&#8217;ll explore how to extend the default flow run retention period using <strong>FlowRunTimeToLiveInSeconds<\/strong>, retrieve Cloud Flow Run Metadata from Dataverse, and build a lightweight dashboard for monitoring flow health and execution success rates.<\/p>\n<h3><strong>Approach<\/strong><\/h3>\n<p>Rather than relying solely on the Power Automate portal for short-term diagnostics, we can leverage <strong>Cloud Flow Run Metadata<\/strong> stored in Dataverse to build a historical monitoring solution.<\/p>\n<p>Our approach consists of three steps:<\/p>\n<ol>\n<li>Inspect the current retention period.<\/li>\n<li>Update <strong>FlowRunTimeToLiveInSeconds<\/strong> to extend run history retention.<\/li>\n<li>Retrieve flow execution metadata and surface it within a custom dashboard.<\/li>\n<\/ol>\n<p>The dashboard presented in this article intentionally focuses on four key operational metrics:<\/p>\n<table width=\"623\">\n<tbody>\n<tr>\n<td width=\"264\"><strong>Metric<\/strong><\/td>\n<td width=\"359\"><strong>Description<\/strong><\/td>\n<\/tr>\n<tr>\n<td width=\"264\"><strong>Total Runs<\/strong><\/td>\n<td width=\"359\">Count of all runs<\/td>\n<\/tr>\n<tr>\n<td width=\"264\"><strong>Successful Runs<\/strong><\/td>\n<td width=\"359\">Status = Succeeded<\/td>\n<\/tr>\n<tr>\n<td width=\"264\"><strong>Failed Runs<\/strong><\/td>\n<td width=\"359\">Status = Failed<\/td>\n<\/tr>\n<tr>\n<td width=\"264\"><strong>Success Rate<\/strong><\/td>\n<td width=\"359\">Successful Runs \u00f7 Total Runs<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>While simple by design, this dashboard serves as a foundation that organisations can later enhance with trend analysis, SLA reporting, execution duration insights, and failure analytics.<\/p>\n<h3>Understanding FlowRunTimeToLiveInSeconds<\/h3>\n<p>Power Platform exposes an organization-level setting named <strong>FlowRunTimeToLiveInSeconds<\/strong>, which controls how long Cloud Flow Run Metadata is retained.<\/p>\n<p>By default, this value is:<\/p>\n<pre class=\"lang:css gutter:true start:1\">2419200 seconds<\/pre>\n<p>Which corresponds to:<\/p>\n<pre class=\"lang:css gutter:true start:1\">28 days<\/pre>\n<p>Before modifying this setting, we can retrieve the current value from the Organization table.<\/p>\n<pre class=\"lang:css gutter:true start:1\">const response = await fetch(\r\n\"\/api\/data\/v9.2\/organizations?$select=organizationid,flowruntimetoliveinseconds\"\r\n);\r\n\r\nconst data = await response.json();\r\n\r\nconsole.log(data.value[0]);<\/pre>\n<p>Example response:<\/p>\n<pre class=\"lang:css gutter:true start:1\">{\r\n\"organizationid\":\"0423e7e6-374c-f111-b31d-6045bdaacfdb\",\r\n\"flowruntimetoliveinseconds\":2419200\r\n}<\/pre>\n<h3>Extending Cloud Flow Retention<\/h3>\n<p>Once the Organization Id is available, the retention period can be updated using a PATCH request.<\/p>\n<p>For example, the following updates the retention period to 14 days.<\/p>\n<pre class=\"lang:css gutter:true start:1\">await fetch(`\/api\/data\/v9.2\/organizations(${orgId})`, {\r\n\r\nmethod: \"PATCH\",\r\n\r\nbody: JSON.stringify({\r\n\r\nflowruntimetoliveinseconds: 7776000\r\n\r\n})\r\n\r\n});<\/pre>\n<p>Organisations can select a retention period that aligns with their monitoring and reporting requirements.<\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"160\">Retention<\/td>\n<td width=\"161\">Seconds<\/td>\n<\/tr>\n<tr>\n<td width=\"160\"><strong>28 Days<\/strong><\/td>\n<td width=\"161\">2419200<\/td>\n<\/tr>\n<tr>\n<td width=\"160\"><strong>60 Days<\/strong><\/td>\n<td width=\"161\">5184000<\/td>\n<\/tr>\n<tr>\n<td width=\"160\"><strong>90 Days<\/strong><\/td>\n<td width=\"161\">7776000<\/td>\n<\/tr>\n<tr>\n<td width=\"160\"><strong>180 Days<\/strong><\/td>\n<td width=\"161\">15552000<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3><strong>Retrieving Cloud Flow Run Metadata<\/strong><\/h3>\n<p>Once retention has been configured, we can go ahead and retrieve Cloud Flow Run Metadata available through the <strong>flowruns<\/strong> table.<\/p>\n<p>For this dashboard, we only retrieve the fields required for reporting purposes.<\/p>\n<pre class=\"lang:css gutter:true start:1\">const query =\r\n\"flowruns?$select=workflowid,status,createdon,duration\";\r\n\r\nconst response = await odata(query);<\/pre>\n<p>These columns provide enough information to calculate the dashboard metrics.<\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"217\"><strong>Column<\/strong><\/td>\n<td width=\"227\"><strong>Purpose<\/strong><\/td>\n<\/tr>\n<tr>\n<td width=\"217\"><strong>workflowid<\/strong><\/td>\n<td width=\"227\">Associated cloud flow<\/td>\n<\/tr>\n<tr>\n<td width=\"217\"><strong>status<\/strong><\/td>\n<td width=\"227\">Succeeded \/ Failed<\/td>\n<\/tr>\n<tr>\n<td width=\"217\"><strong>createdon<\/strong><\/td>\n<td width=\"227\">Execution timestamp<\/td>\n<\/tr>\n<tr>\n<td width=\"217\"><strong>duration<\/strong><\/td>\n<td width=\"227\">Runtime duration<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3><strong>\u00a0<\/strong><strong>Aggregating Flow Metrics<\/strong><\/h3>\n<p>Rather than querying aggregate values individually, the dashboard computes metrics client-side after retrieving flow runs.<\/p>\n<p>For example:<\/p>\n<pre class=\"lang:css gutter:true start:1\">flowMap[wfId].total++;\r\n\r\nif (r.status === \"Succeeded\")\r\n{\r\nflowMap[wfId].success++;\r\n}<\/pre>\n<p>Success percentage can then be derived using:<\/p>\n<pre class=\"lang:css gutter:true start:1\">const rate = (success \/ total) * 100;<\/pre>\n<p>Failures are calculated as:<\/p>\n<pre class=\"lang:css gutter:true start:1\">const failures = total - success;<\/pre>\n<p>This provides enough information to surface the four dashboard KPIs.<\/p>\n<ul>\n<li>Total Runs<\/li>\n<li>Successful Runs<\/li>\n<li>Failed Runs<\/li>\n<li>Success Rate<\/li>\n<\/ul>\n<h3><strong>Building the Dashboard<\/strong><\/h3>\n<p>To visualise Cloud Flow Run Metadata, we created a lightweight HTML web resource.<\/p>\n<p>The dashboard displays Total Runs, Successful Runs, Failed Runs and Success Rates<\/p>\n<p>along with a simple breakdown of individual cloud flows, including:<\/p>\n<ul>\n<li>Success percentage<\/li>\n<li>Average execution duration<\/li>\n<li>Number of failures<\/li>\n<li>Last execution date<\/li>\n<\/ul>\n<h3><strong>Dashboard Output<\/strong><\/h3>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-45094\" src=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Cloud-Flow-Run-Metadata.png\" alt=\"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata\" width=\"1871\" height=\"980\" srcset=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Cloud-Flow-Run-Metadata.png 1871w, https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Cloud-Flow-Run-Metadata-300x157.png 300w, https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Cloud-Flow-Run-Metadata-1024x536.png 1024w, https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Cloud-Flow-Run-Metadata-768x402.png 768w, https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Cloud-Flow-Run-Metadata-1536x805.png 1536w, https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Cloud-Flow-Run-Metadata-660x346.png 660w, https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Cloud-Flow-Run-Metadata-380x200.png 380w\" sizes=\"(max-width: 1871px) 100vw, 1871px\" \/><\/p>\n<p><em><span style=\"color: #999999;\">Figure 1: Power Automate Flow Dashboard<\/span><\/em><\/p>\n<h3><strong>Conclusion<\/strong><\/h3>\n<p>Although Power Automate provides excellent short-term monitoring capabilities, the default 28-day retention period can become a limitation for organisations operating business-critical automations.<\/p>\n<p>By leveraging <strong>FlowRunTimeToLiveInSeconds<\/strong> together with <strong>Cloud Flow Run Metadata<\/strong> stored in Dataverse, organisations can retain execution history for longer periods, simplify troubleshooting, and build monitoring experiences tailored to their operational requirements.<\/p>\n<p>The dashboard presented in this article focuses on four essential metrics, but the same metadata can easily be extended to support:<\/p>\n<ul>\n<li>SLA monitoring<\/li>\n<li>Historical trend analysis<\/li>\n<li>Capacity planning<\/li>\n<li>Failure analytics<\/li>\n<li>Operational insights<\/li>\n<li>Enterprise-scale Power Platform governance<\/li>\n<\/ul>\n<p>For organisations seeking deeper visibility into their automation landscape, Cloud Flow Run Metadata provides a practical foundation for long-term monitoring beyond the limitations of the Power Automate portal.<\/p>\n<h3><strong>FAQs<\/strong><\/h3>\n<p><strong>What is the default run history retention period in Power Automate?<\/strong><br \/>\nPower Automate retains cloud flow run history for 28 days by default. This is controlled by an organization-level setting called FlowRunTimeToLiveInSeconds, which is set to 2,419,200 seconds (28 days) out of the box.<br \/>\n<strong><br \/>\nWhere is Cloud Flow Run Metadata stored?<\/strong><br \/>\nCloud Flow Run Metadata is stored in Dataverse, in a table called flowruns. Key columns include workflowid (the associated flow), status (Succeeded\/Failed), createdon (execution timestamp), and duration (runtime).<\/p>\n<p><strong>Can I build a custom dashboard for Power Automate flow monitoring?<\/strong><br \/>\nYes. By querying the flowruns table in Dataverse, you can build a lightweight HTML web resource or Power BI dashboard that surfaces metrics like Total Runs, Successful Runs, Failed Runs, and Success Rate, calculated client-side from the retrieved run data.<\/p>\n<p><strong>What can Cloud Flow Run Metadata be used for beyond basic monitoring?<\/strong><br \/>\nBeyond the four core KPIs, the same metadata can support SLA monitoring, historical trend analysis, capacity planning, failure analytics, and enterprise-scale Power Platform governance.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Power Automate has become the backbone for many business processes, integrations, and automation scenarios across the Power Platform ecosystem. From approval processes to large-scale integrations, organisations increasingly rely on cloud flows to power mission-critical workloads. Although Power Automate provides a comprehensive monitoring experience, one limitation quickly becomes apparent in production environments: cloud flow execution history\u2026 <span class=\"read-more\"><a href=\"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/\">Read More: Extending Power Automate Run History Beyond 28 Days Using Cloud\u2026 &raquo;<\/a><\/span><\/p>\n","protected":false},"author":15,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1985,2361],"tags":[3381],"class_list":["post-45090","post","type-post","status-publish","format-standard","hentry","category-power-automate","category-technical","tag-cloud-flow-run-metadata"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"Power Automate has become the backbone for many business processes, integrations, and automation scenarios across the Power Platform ecosystem. From approval processes to large-scale integrations, organisations increasingly rely on cloud flows to power mission-critical workloads. Although Power Automate provides a comprehensive monitoring experience, one limitation quickly becomes apparent in production environments: cloud flow execution history\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Sam Kumar\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Microsoft Dynamics 365 CRM Tips and Tricks - By Inogic\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata - Microsoft Dynamics 365 CRM Tips and Tricks\" \/>\n\t\t<meta property=\"og:description\" content=\"Power Automate has become the backbone for many business processes, integrations, and automation scenarios across the Power Platform ecosystem. From approval processes to large-scale integrations, organisations increasingly rely on cloud flows to power mission-critical workloads. Although Power Automate provides a comprehensive monitoring experience, one limitation quickly becomes apparent in production environments: cloud flow execution history\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Extending-Power-Automate-Run-History-Beyond-28-Days-Using-Cloud-Flow-Run-Metadata.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Extending-Power-Automate-Run-History-Beyond-28-Days-Using-Cloud-Flow-Run-Metadata.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"1400\" \/>\n\t\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-07-03T12:31:40+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-07-03T12:31:40+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inogicindia\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@inogic\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata - Microsoft Dynamics 365 CRM Tips and Tricks\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Power Automate has become the backbone for many business processes, integrations, and automation scenarios across the Power Platform ecosystem. From approval processes to large-scale integrations, organisations increasingly rely on cloud flows to power mission-critical workloads. Although Power Automate provides a comprehensive monitoring experience, one limitation quickly becomes apparent in production environments: cloud flow execution history\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@inogic\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Extending-Power-Automate-Run-History-Beyond-28-Days-Using-Cloud-Flow-Run-Metadata.png\" \/>\n\t\t<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t\t<meta name=\"twitter:data1\" content=\"Sam Kumar\" \/>\n\t\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2026\\\/07\\\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\\\/#blogposting\",\"name\":\"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata - Microsoft Dynamics 365 CRM Tips and Tricks\",\"headline\":\"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata\",\"author\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/sam-kumar\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/Extending-Power-Automate-Run-History-Beyond-28-Days-Using-Cloud-Flow-Run-Metadata.png\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2026\\\/07\\\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\\\/#articleImage\",\"width\":1400,\"height\":800,\"caption\":\"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata\"},\"datePublished\":\"2026-07-03T18:01:40+05:30\",\"dateModified\":\"2026-07-03T18:01:40+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2026\\\/07\\\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2026\\\/07\\\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\\\/#webpage\"},\"articleSection\":\"Power Automate, Technical, Cloud Flow Run Metadata\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2026\\\/07\\\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.inogic.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/power-automate\\\/#listItem\",\"name\":\"Power Automate\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/power-automate\\\/#listItem\",\"position\":2,\"name\":\"Power Automate\",\"item\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/power-automate\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2026\\\/07\\\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\\\/#listItem\",\"name\":\"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2026\\\/07\\\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\\\/#listItem\",\"position\":3,\"name\":\"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/power-automate\\\/#listItem\",\"name\":\"Power Automate\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\",\"name\":\"Microsoft Dynamics 365 CRM Tips and Tricks\",\"description\":\"By Inogic\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/inogic-logo.png\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2026\\\/07\\\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\\\/#organizationLogo\",\"width\":1000,\"height\":325,\"caption\":\"inogic logo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2026\\\/07\\\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/inogicindia\",\"https:\\\/\\\/twitter.com\\\/inogic\",\"https:\\\/\\\/www.instagram.com\\\/inogicindia\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCM4V7ousgLSu1hbOEv4DUuQ\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/inogicindia\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/sam-kumar\\\/#author\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/sam-kumar\\\/\",\"name\":\"Sam Kumar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2026\\\/07\\\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ede4386d06665d3d5ee2ecccb6c36df60385d561e317372bd89dffb7e4b1de2f?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Sam Kumar\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2026\\\/07\\\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\\\/#webpage\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2026\\\/07\\\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\\\/\",\"name\":\"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata - Microsoft Dynamics 365 CRM Tips and Tricks\",\"description\":\"Power Automate has become the backbone for many business processes, integrations, and automation scenarios across the Power Platform ecosystem. From approval processes to large-scale integrations, organisations increasingly rely on cloud flows to power mission-critical workloads. Although Power Automate provides a comprehensive monitoring experience, one limitation quickly becomes apparent in production environments: cloud flow execution history\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2026\\\/07\\\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/sam-kumar\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/sam-kumar\\\/#author\"},\"datePublished\":\"2026-07-03T18:01:40+05:30\",\"dateModified\":\"2026-07-03T18:01:40+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/\",\"name\":\"Microsoft Dynamics 365 CRM Tips and Tricks\",\"alternateName\":\"Inogic\",\"description\":\"By Inogic\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata - Microsoft Dynamics 365 CRM Tips and Tricks","description":"Power Automate has become the backbone for many business processes, integrations, and automation scenarios across the Power Platform ecosystem. From approval processes to large-scale integrations, organisations increasingly rely on cloud flows to power mission-critical workloads. Although Power Automate provides a comprehensive monitoring experience, one limitation quickly becomes apparent in production environments: cloud flow execution history","canonical_url":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/#blogposting","name":"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata - Microsoft Dynamics 365 CRM Tips and Tricks","headline":"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata","author":{"@id":"https:\/\/www.inogic.com\/blog\/author\/sam-kumar\/#author"},"publisher":{"@id":"https:\/\/www.inogic.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Extending-Power-Automate-Run-History-Beyond-28-Days-Using-Cloud-Flow-Run-Metadata.png","@id":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/#articleImage","width":1400,"height":800,"caption":"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata"},"datePublished":"2026-07-03T18:01:40+05:30","dateModified":"2026-07-03T18:01:40+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/#webpage"},"isPartOf":{"@id":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/#webpage"},"articleSection":"Power Automate, Technical, Cloud Flow Run Metadata"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.inogic.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/power-automate\/#listItem","name":"Power Automate"}},{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/power-automate\/#listItem","position":2,"name":"Power Automate","item":"https:\/\/www.inogic.com\/blog\/category\/power-automate\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/#listItem","name":"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/#listItem","position":3,"name":"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata","previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/power-automate\/#listItem","name":"Power Automate"}}]},{"@type":"Organization","@id":"https:\/\/www.inogic.com\/blog\/#organization","name":"Microsoft Dynamics 365 CRM Tips and Tricks","description":"By Inogic","url":"https:\/\/www.inogic.com\/blog\/","logo":{"@type":"ImageObject","url":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2023\/02\/inogic-logo.png","@id":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/#organizationLogo","width":1000,"height":325,"caption":"inogic logo"},"image":{"@id":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/inogicindia","https:\/\/twitter.com\/inogic","https:\/\/www.instagram.com\/inogicindia\/","https:\/\/www.youtube.com\/channel\/UCM4V7ousgLSu1hbOEv4DUuQ","https:\/\/www.linkedin.com\/company\/inogicindia"]},{"@type":"Person","@id":"https:\/\/www.inogic.com\/blog\/author\/sam-kumar\/#author","url":"https:\/\/www.inogic.com\/blog\/author\/sam-kumar\/","name":"Sam Kumar","image":{"@type":"ImageObject","@id":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/ede4386d06665d3d5ee2ecccb6c36df60385d561e317372bd89dffb7e4b1de2f?s=96&d=mm&r=g","width":96,"height":96,"caption":"Sam Kumar"}},{"@type":"WebPage","@id":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/#webpage","url":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/","name":"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata - Microsoft Dynamics 365 CRM Tips and Tricks","description":"Power Automate has become the backbone for many business processes, integrations, and automation scenarios across the Power Platform ecosystem. From approval processes to large-scale integrations, organisations increasingly rely on cloud flows to power mission-critical workloads. Although Power Automate provides a comprehensive monitoring experience, one limitation quickly becomes apparent in production environments: cloud flow execution history","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.inogic.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/#breadcrumblist"},"author":{"@id":"https:\/\/www.inogic.com\/blog\/author\/sam-kumar\/#author"},"creator":{"@id":"https:\/\/www.inogic.com\/blog\/author\/sam-kumar\/#author"},"datePublished":"2026-07-03T18:01:40+05:30","dateModified":"2026-07-03T18:01:40+05:30"},{"@type":"WebSite","@id":"https:\/\/www.inogic.com\/blog\/#website","url":"https:\/\/www.inogic.com\/blog\/","name":"Microsoft Dynamics 365 CRM Tips and Tricks","alternateName":"Inogic","description":"By Inogic","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.inogic.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Microsoft Dynamics 365 CRM Tips and Tricks - By Inogic","og:type":"article","og:title":"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata - Microsoft Dynamics 365 CRM Tips and Tricks","og:description":"Power Automate has become the backbone for many business processes, integrations, and automation scenarios across the Power Platform ecosystem. From approval processes to large-scale integrations, organisations increasingly rely on cloud flows to power mission-critical workloads. Although Power Automate provides a comprehensive monitoring experience, one limitation quickly becomes apparent in production environments: cloud flow execution history","og:url":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/","og:image":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Extending-Power-Automate-Run-History-Beyond-28-Days-Using-Cloud-Flow-Run-Metadata.png","og:image:secure_url":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Extending-Power-Automate-Run-History-Beyond-28-Days-Using-Cloud-Flow-Run-Metadata.png","og:image:width":1400,"og:image:height":800,"article:published_time":"2026-07-03T12:31:40+00:00","article:modified_time":"2026-07-03T12:31:40+00:00","article:publisher":"https:\/\/www.facebook.com\/inogicindia","twitter:card":"summary_large_image","twitter:site":"@inogic","twitter:title":"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata - Microsoft Dynamics 365 CRM Tips and Tricks","twitter:description":"Power Automate has become the backbone for many business processes, integrations, and automation scenarios across the Power Platform ecosystem. From approval processes to large-scale integrations, organisations increasingly rely on cloud flows to power mission-critical workloads. Although Power Automate provides a comprehensive monitoring experience, one limitation quickly becomes apparent in production environments: cloud flow execution history","twitter:creator":"@inogic","twitter:image":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2026\/07\/Extending-Power-Automate-Run-History-Beyond-28-Days-Using-Cloud-Flow-Run-Metadata.png","twitter:label1":"Written by","twitter:data1":"Sam Kumar","twitter:label2":"Est. reading time","twitter:data2":"5 minutes"},"aioseo_meta_data":{"post_id":"45090","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":true,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2026-07-03 11:48:27","updated":"2026-07-03 12:56:02","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.inogic.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.inogic.com\/blog\/category\/power-automate\/\" title=\"Power Automate\">Power Automate<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tExtending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.inogic.com\/blog"},{"label":"Power Automate","link":"https:\/\/www.inogic.com\/blog\/category\/power-automate\/"},{"label":"Extending Power Automate Run History Beyond 28 Days Using Cloud Flow Run Metadata","link":"https:\/\/www.inogic.com\/blog\/2026\/07\/extending-power-automate-run-history-beyond-28-days-using-cloud-flow-run-metadata\/"}],"_links":{"self":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts\/45090","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/users\/15"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/comments?post=45090"}],"version-history":[{"count":4,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts\/45090\/revisions"}],"predecessor-version":[{"id":45096,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts\/45090\/revisions\/45096"}],"wp:attachment":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/media?parent=45090"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/categories?post=45090"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/tags?post=45090"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}