About This Site

Welcome to our status page. If you are looking for help, please check our documentation guides or contact us on our community forum. All products listed below have a target availability of 99.9%.

Current UiPath Status

All Systems Operational
'; html += '
'; updates.forEach(function(update) { var updateStatus = update.status || 'investigating'; var updateBody = update.body || ''; var updateTime = formatDate(update.created_at); html += '
'; html += '
'; html += ' ' + updateStatus.replace(/_/g, ' ').replace(/\b\w/g, function(c) { return c.toUpperCase(); }) + ''; html += ' - ' + updateBody + ''; html += '
'; html += '
' + updateTime + '
'; html += '
'; }); html += '
'; html += '
'; return html; } function renderCustomIncidents() { var container = document.getElementById('customIncidentsContainer'); if (!container) return; // Only render custom incidents on home page var path = window.location.pathname; var isHomePage = path === '/' || path === ''; if (!isHomePage) { container.style.display = 'none'; return; } var origin = window.location.origin; Promise.all([ fetch(origin + '/api/v2/scheduled-maintenances/active.json').then(function(r) { return r.json(); }).catch(function() { return {}; }), fetch(origin + '/api/v2/incidents.json').then(function(r) { return r.json(); }).catch(function() { return {}; }) ]).then(function(results) { var maintenances = (results[0] && results[0].scheduled_maintenances) ? results[0].scheduled_maintenances : []; var allIncidents = (results[1] && results[1].incidents) ? results[1].incidents : []; var incidents = allIncidents.filter(function(i) { return i.status !== 'resolved' && i.status !== 'postmortem'; }); if (maintenances.length === 0 && incidents.length === 0) { container.innerHTML = ''; container.style.display = 'none'; return; } container.style.display = 'block'; var html = ''; // Active scheduled maintenances first (top) maintenances.forEach(function(m) { html += buildIncidentHtml(m, 'id', 'name', 'incident_updates', 'maintenance'); }); // Then active incidents (oldest first) incidents.slice().reverse().forEach(function(incident) { html += buildIncidentHtml(incident, 'id', 'name', 'incident_updates', getImpactColor(incident.impact)); }); container.innerHTML = html; container.style.display = 'block'; container.style.visibility = 'visible'; container.style.opacity = '1'; // Initialize subscribe button handlers setTimeout(function() { var subscribeButtons = container.querySelectorAll('.custom-incident-subscribe'); subscribeButtons.forEach(function(btn) { btn.addEventListener('click', function(e) { e.preventDefault(); e.stopPropagation(); var targetModalId = this.getAttribute('href'); if (!targetModalId) return; // Try jQuery/Bootstrap modal first if (typeof jQuery !== 'undefined' && jQuery.fn.modal) { var modal = jQuery(targetModalId); if (modal.length > 0) { modal.modal('show'); return; } } // Fallback: manually trigger modal var modalEl = document.querySelector(targetModalId); if (modalEl) { modalEl.classList.add('in', 'show'); modalEl.style.display = 'block'; // Add backdrop var backdrop = document.createElement('div'); backdrop.className = 'modal-backdrop in fade show'; document.body.appendChild(backdrop); // Close handlers var closeModal = function() { modalEl.classList.remove('in', 'show'); modalEl.style.display = 'none'; if (backdrop && backdrop.parentElement) { backdrop.parentElement.removeChild(backdrop); } }; modalEl.querySelectorAll('[data-dismiss="modal"]').forEach(function(closeBtn) { closeBtn.addEventListener('click', closeModal); }); backdrop.addEventListener('click', closeModal); } }); }); }, 100); }) .catch(function(err) { console.error('Could not fetch incidents:', err); container.style.display = 'none'; }); } // Initial render renderCustomIncidents(); // Refresh every 60 seconds setInterval(renderCustomIncidents, 60000); // ======================================== // SUBSCRIPTION PAGE - SELECT ALL/NONE // ======================================== if (window.location.pathname.includes('/subscriptions')) { // Hide status elements on subscription page only var statusHeading = document.querySelector('.custom-status-heading'); var statusBanner = document.querySelector('.custom-status-banner'); var customIncidents = document.getElementById('customIncidentsContainer'); var aboutSection = document.querySelector('.custom-about-section'); if (statusHeading) statusHeading.style.display = 'none'; if (statusBanner) statusBanner.style.display = 'none'; if (customIncidents) customIncidents.style.display = 'none'; if (aboutSection) aboutSection.style.display = 'none'; var collapsed = false; var regionData = {}; // regionName -> { label: element, total: count, checked: count } // 1. Collapse all regions (run once) function collapse() { if (collapsed) return; var active = document.querySelectorAll('.grouped-item.group-parent.active'); if (active.length === 0) return; active.forEach(function(r) { // Capture state before collapsing var name = (r.querySelector('.grouped-item-label span') || {}).textContent || ''; name = name.replace(/Select (all|none)/g, '').trim(); var cbs = []; r.querySelectorAll('input[type="checkbox"]').forEach(function(cb) { var parent = cb.closest('.grouped-item'); if (parent && parent.parentElement === r) cbs.push(cb); }); if (cbs.length > 0 && name) { var chk = cbs.filter(function(cb) { return cb.checked; }).length; regionData[name] = { label: null, total: cbs.length, checked: chk }; } // Collapse var btn = r.querySelector('.grouped-item-label [role="button"]'); if (btn) btn.click(); }); collapsed = true; } // 2. Add "Select all/none" links to all regions (idempotent) function addLinks() { document.querySelectorAll('.grouped-item.group-parent').forEach(function(region) { var labelDiv = region.querySelector('.grouped-item-label'); if (!labelDiv || labelDiv.querySelector('.region-select-all')) return; var span = labelDiv.querySelector('span'); if (!span) return; var name = span.textContent.trim(); var container = document.createElement('span'); container.className = 'region-select-all'; var link = document.createElement('span'); link.className = 'region-select-all-label'; link.textContent = 'Select all'; link._regionName = name; link._region = region; link.onclick = function(e) { e.stopPropagation(); e.preventDefault(); var name = this._regionName; var r = this._region; // Find checkboxes var cbs = []; r.querySelectorAll('input[type="checkbox"]').forEach(function(cb) { var parent = cb.closest('.grouped-item'); if (parent && parent.parentElement === r) cbs.push(cb); }); if (cbs.length === 0) return; // Count checked var chk = cbs.filter(function(cb) { return cb.checked; }).length; var shouldCheck = (chk === 0); // Click each label cbs.forEach(function(cb) { if (cb.checked !== shouldCheck) { var lbl = cb.closest('label'); if (lbl) lbl.click(); } }); // Update stored data if (regionData[name]) { regionData[name].checked = shouldCheck ? cbs.length : 0; } }; container.appendChild(link); span.appendChild(container); // Store reference if (!regionData[name]) { regionData[name] = { label: link, total: 0, checked: 0 }; } else { regionData[name].label = link; } }); } // 3. Update all link texts based on actual or stored state function updateLinks() { document.querySelectorAll('.grouped-item.group-parent').forEach(function(region) { var span = region.querySelector('.grouped-item-label span'); if (!span) return; var name = span.textContent.replace(/Select (all|none)/g, '').trim(); var link = region.querySelector('.region-select-all-label'); if (!link) return; // Try to find actual checkboxes var cbs = []; region.querySelectorAll('input[type="checkbox"]').forEach(function(cb) { var parent = cb.closest('.grouped-item'); if (parent && parent.parentElement === region) cbs.push(cb); }); if (cbs.length > 0) { // Region is expanded - use actual state var chk = cbs.filter(function(cb) { return cb.checked; }).length; // Update stored data if (regionData[name]) { regionData[name].total = cbs.length; regionData[name].checked = chk; } // Update link text if (chk === 0) { link.textContent = 'Select all'; } else if (chk === cbs.length) { link.textContent = 'Select none'; } else { link.textContent = 'Select all (' + chk + ')'; } } else if (regionData[name]) { // Region is collapsed - use stored state var d = regionData[name]; if (d.checked === 0) { link.textContent = 'Select all'; } else if (d.checked === d.total) { link.textContent = 'Select none'; } else { link.textContent = 'Select all (' + d.checked + ')'; } } }); } // 4. Watch global button function watchGlobal() { var h6 = document.querySelector('h6'); if (!h6 || !h6.textContent.includes('Components')) return; var btn = h6.parentElement.querySelector('a'); if (!btn || btn.dataset.watched) return; btn.dataset.watched = 'true'; btn.addEventListener('click', function() { var self = this; setTimeout(function() { var txt = self.textContent.trim(); // Update all stored states for (var name in regionData) { if (txt.includes('Select all')) { regionData[name].checked = 0; } else if (txt.includes('Select none')) { regionData[name].checked = regionData[name].total; } } updateLinks(); }, 250); }); } // Run setTimeout(collapse, 50); setTimeout(collapse, 150); setTimeout(addLinks, 500); setInterval(addLinks, 3000); setTimeout(updateLinks, 800); setInterval(updateLinks, 400); setTimeout(watchGlobal, 1000); setTimeout(watchGlobal, 2000); } })();

All Systems Operational

European Union Operational
90 days ago
99.95 % uptime
Today
Automation Cloud Operational
90 days ago
100.0 % uptime
Today
Orchestrator Operational
90 days ago
99.75 % uptime
Today
Automation Hub Operational
90 days ago
100.0 % uptime
Today
AI Center Operational
90 days ago
100.0 % uptime
Today
Action Center Operational
90 days ago
99.94 % uptime
Today
Apps Operational
90 days ago
99.94 % uptime
Today
Automation Ops Operational
90 days ago
100.0 % uptime
Today
Computer Vision Operational
90 days ago
100.0 % uptime
Today
Customer Portal Operational
90 days ago
100.0 % uptime
Today
Data Service Operational
90 days ago
99.97 % uptime
Today
Documentation Portal Operational
90 days ago
100.0 % uptime
Today
Document Understanding Operational
90 days ago
99.81 % uptime
Today
Insights Operational
90 days ago
100.0 % uptime
Today
Integration Service Operational
90 days ago
99.98 % uptime
Today
Marketplace Operational
90 days ago
99.94 % uptime
Today
Process Mining Operational
90 days ago
100.0 % uptime
Today
Task Mining Operational
90 days ago
100.0 % uptime
Today
Test Manager Operational
90 days ago
100.0 % uptime
Today
IXP Operational
90 days ago
99.85 % uptime
Today
Serverless Robots Operational
90 days ago
100.0 % uptime
Today
Studio Web Operational
90 days ago
100.0 % uptime
Today
Solutions Management Operational
90 days ago
99.92 % uptime
Today
Context Grounding Operational
90 days ago
100.0 % uptime
Today
Autopilot for Everyone Operational
90 days ago
100.0 % uptime
Today
Autopilot (Plugins) Operational
90 days ago
100.0 % uptime
Today
Agents Operational
90 days ago
99.67 % uptime
Today
Agentic Orchestration Operational
90 days ago
99.91 % uptime
Today
Autopilot for Developers Operational
90 days ago
100.0 % uptime
Today
ScreenPlay Operational
90 days ago
100.0 % uptime
Today
Cloud Robots - VM Operational
90 days ago
99.88 % uptime
Today
United States Operational
90 days ago
99.96 % uptime
Today
Automation Cloud Operational
90 days ago
100.0 % uptime
Today
Orchestrator Operational
90 days ago
100.0 % uptime
Today
Automation Hub Operational
90 days ago
100.0 % uptime
Today
AI Center Operational
90 days ago
100.0 % uptime
Today
Action Center Operational
90 days ago
100.0 % uptime
Today
Apps Operational
90 days ago
100.0 % uptime
Today
Automation Ops Operational
90 days ago
100.0 % uptime
Today
Computer Vision Operational
90 days ago
100.0 % uptime
Today
Cloud Robots - VM Operational
90 days ago
99.68 % uptime
Today
Data Service Operational
90 days ago
99.94 % uptime
Today
Documentation Portal Operational
90 days ago
100.0 % uptime
Today
Document Understanding Operational
90 days ago
100.0 % uptime
Today
Insights Operational
90 days ago
100.0 % uptime
Today
Integration Service Operational
90 days ago
100.0 % uptime
Today
Process Mining Operational
90 days ago
100.0 % uptime
Today
Task Mining Operational
90 days ago
100.0 % uptime
Today
Test Manager Operational
90 days ago
100.0 % uptime
Today
IXP Operational
90 days ago
100.0 % uptime
Today
Serverless Robots Operational
90 days ago
100.0 % uptime
Today
Solutions Management Operational
90 days ago
100.0 % uptime
Today
Customer Portal Operational
90 days ago
100.0 % uptime
Today
Studio Web Operational
90 days ago
99.96 % uptime
Today
Context Grounding Operational
90 days ago
100.0 % uptime
Today
Autopilot for Everyone Operational
90 days ago
100.0 % uptime
Today
Agentic Orchestration Operational
90 days ago
100.0 % uptime
Today
Autopilot (Plugins) Operational
90 days ago
100.0 % uptime
Today
Marketplace Operational
90 days ago
100.0 % uptime
Today
Agents Operational
90 days ago
99.32 % uptime
Today
Autopilot for Developers Operational
90 days ago
100.0 % uptime
Today
ScreenPlay Operational
90 days ago
100.0 % uptime
Today
Japan Operational
90 days ago
99.96 % uptime
Today
Automation Cloud Operational
90 days ago
100.0 % uptime
Today
Orchestrator Operational
90 days ago
100.0 % uptime
Today
Automation Hub Operational
90 days ago
100.0 % uptime
Today
AI Center Operational
90 days ago
100.0 % uptime
Today
Action Center Operational
90 days ago
100.0 % uptime
Today
Apps Operational
90 days ago
100.0 % uptime
Today
Automation Ops Operational
90 days ago
100.0 % uptime
Today
Cloud Robots - VM Operational
90 days ago
99.68 % uptime
Today
Data Service Operational
90 days ago
99.94 % uptime
Today
Documentation Portal Operational
90 days ago
100.0 % uptime
Today
Document Understanding Operational
90 days ago
100.0 % uptime
Today
Insights Operational
90 days ago
100.0 % uptime
Today
Integration Service Operational
90 days ago
100.0 % uptime
Today
Process Mining Operational
90 days ago
100.0 % uptime
Today
Task Mining Operational
90 days ago
100.0 % uptime
Today
Test Manager Operational
90 days ago
100.0 % uptime
Today
IXP Operational
90 days ago
100.0 % uptime
Today
Serverless Robots Operational
90 days ago
100.0 % uptime
Today
Solutions Management Operational
90 days ago
100.0 % uptime
Today
Customer Portal Operational
90 days ago
100.0 % uptime
Today
Studio Web Operational
90 days ago
100.0 % uptime
Today
Context Grounding Operational
90 days ago
100.0 % uptime
Today
Autopilot for Everyone Operational
90 days ago
100.0 % uptime
Today
Agentic Orchestration Operational
90 days ago
100.0 % uptime
Today
Autopilot (Plugins) Operational
90 days ago
100.0 % uptime
Today
Marketplace Operational
90 days ago
100.0 % uptime
Today
Agents Operational
90 days ago
99.34 % uptime
Today
Autopilot for Developers Operational
90 days ago
100.0 % uptime
Today
ScreenPlay Operational
90 days ago
100.0 % uptime
Today
India Operational
90 days ago
99.94 % uptime
Today
Automation Cloud Operational
90 days ago
100.0 % uptime
Today
Orchestrator Operational
90 days ago
100.0 % uptime
Today
Automation Hub Operational
90 days ago
100.0 % uptime
Today
AI Center Operational
90 days ago
99.94 % uptime
Today
Action Center Operational
90 days ago
100.0 % uptime
Today
Apps Operational
90 days ago
100.0 % uptime
Today
Automation Ops Operational
90 days ago
100.0 % uptime
Today
Cloud Robots - VM Operational
90 days ago
99.68 % uptime
Today
Data Service Operational
90 days ago
99.94 % uptime
Today
Documentation Portal Operational
90 days ago
100.0 % uptime
Today
Document Understanding Operational
90 days ago
100.0 % uptime
Today
Insights Operational
90 days ago
100.0 % uptime
Today
Integration Service Operational
90 days ago
100.0 % uptime
Today
Task Mining Operational
90 days ago
100.0 % uptime
Today
Test Manager Operational
90 days ago
100.0 % uptime
Today
IXP Operational
90 days ago
99.87 % uptime
Today
Serverless Robots Operational
90 days ago
100.0 % uptime
Today
Customer Portal Operational
90 days ago
100.0 % uptime
Today
Autopilot for Everyone Operational
90 days ago
100.0 % uptime
Today
Agentic Orchestration Operational
90 days ago
100.0 % uptime
Today
Autopilot (Plugins) Operational
90 days ago
100.0 % uptime
Today
Marketplace Operational
90 days ago
100.0 % uptime
Today
Agents Operational
90 days ago
99.34 % uptime
Today
Autopilot for Developers Operational
90 days ago
100.0 % uptime
Today
Singapore Operational
90 days ago
99.95 % uptime
Today
Automation Cloud Operational
90 days ago
100.0 % uptime
Today
Orchestrator Operational
90 days ago
100.0 % uptime
Today
Automation Hub Operational
90 days ago
100.0 % uptime
Today
AI Center Operational
90 days ago
100.0 % uptime
Today
Action Center Operational
90 days ago
100.0 % uptime
Today
Apps Operational
90 days ago
100.0 % uptime
Today
Automation Ops Operational
90 days ago
100.0 % uptime
Today
Cloud Robots - VM Operational
90 days ago
99.68 % uptime
Today
Data Service Operational
90 days ago
99.94 % uptime
Today
Documentation Portal Operational
90 days ago
100.0 % uptime
Today
Document Understanding Operational
90 days ago
100.0 % uptime
Today
Insights Operational
90 days ago
100.0 % uptime
Today
Integration Service Operational
90 days ago
99.98 % uptime
Today
Process Mining Operational
90 days ago
100.0 % uptime
Today
Task Mining Operational
90 days ago
100.0 % uptime
Today
Test Manager Operational
90 days ago
100.0 % uptime
Today
IXP Operational
90 days ago
100.0 % uptime
Today
Serverless Robots Operational
90 days ago
100.0 % uptime
Today
Solutions Management Operational
90 days ago
100.0 % uptime
Today
Customer Portal Operational
90 days ago
100.0 % uptime
Today
Autopilot for Everyone Operational
90 days ago
100.0 % uptime
Today
Agentic Orchestration Operational
90 days ago
100.0 % uptime
Today
Autopilot (Plugins) Operational
90 days ago
100.0 % uptime
Today
Marketplace Operational
90 days ago
100.0 % uptime
Today
Agents Operational
90 days ago
99.34 % uptime
Today
Autopilot for Developers Operational
90 days ago
100.0 % uptime
Today
Australia Operational
90 days ago
99.97 % uptime
Today
Automation Cloud Operational
90 days ago
100.0 % uptime
Today
Orchestrator Operational
90 days ago
100.0 % uptime
Today
Automation Hub Operational
90 days ago
100.0 % uptime
Today
AI Center Operational
90 days ago
100.0 % uptime
Today
Action Center Operational
90 days ago
100.0 % uptime
Today
Apps Operational
90 days ago
100.0 % uptime
Today
Automation Ops Operational
90 days ago
100.0 % uptime
Today
Cloud Robots - VM Operational
90 days ago
100.0 % uptime
Today
Data Service Operational
90 days ago
99.94 % uptime
Today
Documentation Portal Operational
90 days ago
100.0 % uptime
Today
Document Understanding Operational
90 days ago
100.0 % uptime
Today
Insights Operational
90 days ago
100.0 % uptime
Today
Integration Service Operational
90 days ago
100.0 % uptime
Today
Process Mining Operational
90 days ago
100.0 % uptime
Today
Task Mining Operational
90 days ago
100.0 % uptime
Today
Test Manager Operational
90 days ago
100.0 % uptime
Today
IXP Operational
90 days ago
100.0 % uptime
Today
Serverless Robots Operational
90 days ago
100.0 % uptime
Today
Solutions Management Operational
90 days ago
100.0 % uptime
Today
Customer Portal Operational
90 days ago
100.0 % uptime
Today
Studio Web Operational
90 days ago
99.93 % uptime
Today
Context Grounding Operational
90 days ago
100.0 % uptime
Today
Autopilot for Everyone Operational
90 days ago
100.0 % uptime
Today
Agentic Orchestration Operational
90 days ago
100.0 % uptime
Today
Autopilot (Plugins) Operational
90 days ago
100.0 % uptime
Today
Marketplace Operational
90 days ago
100.0 % uptime
Today
Agents Operational
90 days ago
99.34 % uptime
Today
Autopilot for Developers Operational
90 days ago
100.0 % uptime
Today
Canada Operational
90 days ago
99.96 % uptime
Today
Automation Cloud Operational
90 days ago
100.0 % uptime
Today
Orchestrator Operational
90 days ago
100.0 % uptime
Today
Automation Hub Operational
90 days ago
100.0 % uptime
Today
AI Center Operational
90 days ago
100.0 % uptime
Today
Action Center Operational
90 days ago
100.0 % uptime
Today
Apps Operational
90 days ago
100.0 % uptime
Today
Automation Ops Operational
90 days ago
100.0 % uptime
Today
Cloud Robots - VM Operational
90 days ago
99.68 % uptime
Today
Data Service Operational
90 days ago
99.94 % uptime
Today
Documentation Portal Operational
90 days ago
100.0 % uptime
Today
Document Understanding Operational
90 days ago
100.0 % uptime
Today
Insights Operational
90 days ago
100.0 % uptime
Today
Integration Service Operational
90 days ago
99.98 % uptime
Today
Process Mining Operational
90 days ago
100.0 % uptime
Today
Task Mining Operational
90 days ago
100.0 % uptime
Today
Test Manager Operational
90 days ago
100.0 % uptime
Today
IXP Operational
90 days ago
100.0 % uptime
Today
Serverless Robots Operational
90 days ago
100.0 % uptime
Today
Solutions Management Operational
90 days ago
100.0 % uptime
Today
Customer Portal Operational
90 days ago
100.0 % uptime
Today
Context Grounding Operational
90 days ago
100.0 % uptime
Today
Autopilot for Everyone Operational
90 days ago
100.0 % uptime
Today
Agentic Orchestration Operational
90 days ago
100.0 % uptime
Today
Autopilot (Plugins) Operational
90 days ago
100.0 % uptime
Today
Marketplace Operational
90 days ago
100.0 % uptime
Today
Agents Operational
90 days ago
99.34 % uptime
Today
Autopilot for Developers Operational
90 days ago
100.0 % uptime
Today
UK Operational
90 days ago
99.95 % uptime
Today
Automation Cloud Operational
90 days ago
100.0 % uptime
Today
Orchestrator Operational
90 days ago
100.0 % uptime
Today
Automation Hub Operational
90 days ago
100.0 % uptime
Today
AI Center Operational
90 days ago
100.0 % uptime
Today
Action Center Operational
90 days ago
100.0 % uptime
Today
Apps Operational
90 days ago
100.0 % uptime
Today
Automation Ops Operational
90 days ago
100.0 % uptime
Today
Cloud Robots - VM Operational
90 days ago
99.68 % uptime
Today
Data Service Operational
90 days ago
99.94 % uptime
Today
Documentation Portal Operational
90 days ago
100.0 % uptime
Today
Document Understanding Operational
90 days ago
100.0 % uptime
Today
Insights Operational
90 days ago
100.0 % uptime
Today
Integration Service Operational
90 days ago
100.0 % uptime
Today
Process Mining Operational
90 days ago
100.0 % uptime
Today
Task Mining Operational
90 days ago
100.0 % uptime
Today
Test Manager Operational
90 days ago
100.0 % uptime
Today
IXP Operational
90 days ago
99.87 % uptime
Today
Serverless Robots Operational
90 days ago
100.0 % uptime
Today
Solutions Management Operational
90 days ago
100.0 % uptime
Today
Customer Portal Operational
90 days ago
100.0 % uptime
Today
Autopilot for Everyone Operational
90 days ago
100.0 % uptime
Today
Agentic Orchestration Operational
90 days ago
100.0 % uptime
Today
Autopilot (Plugins) Operational
90 days ago
100.0 % uptime
Today
Marketplace Operational
90 days ago
100.0 % uptime
Today
Agents Operational
90 days ago
99.34 % uptime
Today
Autopilot for Developers Operational
90 days ago
100.0 % uptime
Today
Switzerland Operational
90 days ago
99.96 % uptime
Today
Automation Cloud Operational
90 days ago
100.0 % uptime
Today
Orchestrator Operational
90 days ago
100.0 % uptime
Today
Automation Hub Operational
90 days ago
100.0 % uptime
Today
Action Center Operational
90 days ago
100.0 % uptime
Today
Apps Operational
90 days ago
100.0 % uptime
Today
Automation Ops Operational
90 days ago
100.0 % uptime
Today
Computer Vision Operational
90 days ago
100.0 % uptime
Today
Cloud Robots - VM Operational
90 days ago
99.68 % uptime
Today
Data Service Operational
90 days ago
99.94 % uptime
Today
Documentation Portal Operational
90 days ago
100.0 % uptime
Today
Document Understanding Operational
90 days ago
100.0 % uptime
Today
Insights Operational
90 days ago
100.0 % uptime
Today
Integration Service Operational
90 days ago
100.0 % uptime
Today
Process Mining Operational
90 days ago
100.0 % uptime
Today
Task Mining Operational
90 days ago
100.0 % uptime
Today
Test Manager Operational
90 days ago
100.0 % uptime
Today
IXP Operational
90 days ago
99.87 % uptime
Today
Serverless Robots Operational
90 days ago
100.0 % uptime
Today
Solutions Management Operational
90 days ago
100.0 % uptime
Today
Customer Portal Operational
90 days ago
100.0 % uptime
Today
Studio Web Operational
90 days ago
100.0 % uptime
Today
Context Grounding Operational
90 days ago
100.0 % uptime
Today
Autopilot for Everyone Operational
90 days ago
100.0 % uptime
Today
Agentic Orchestration Operational
90 days ago
100.0 % uptime
Today
Autopilot (Plugins) Operational
90 days ago
100.0 % uptime
Today
Marketplace Operational
90 days ago
100.0 % uptime
Today
Agents Operational
90 days ago
99.44 % uptime
Today
Autopilot for Developers Operational
90 days ago
100.0 % uptime
Today
Delayed US Operational
90 days ago
99.96 % uptime
Today
Automation Cloud Operational
90 days ago
100.0 % uptime
Today
Orchestrator Operational
90 days ago
100.0 % uptime
Today
Automation Hub Operational
90 days ago
100.0 % uptime
Today
AI Center Operational
90 days ago
100.0 % uptime
Today
Action Center Operational
90 days ago
100.0 % uptime
Today
Apps Operational
90 days ago
100.0 % uptime
Today
Automation Ops Operational
90 days ago
100.0 % uptime
Today
Cloud Robots - VM Operational
90 days ago
99.68 % uptime
Today
Data Service Operational
90 days ago
100.0 % uptime
Today
Documentation Portal Operational
90 days ago
100.0 % uptime
Today
Document Understanding Operational
90 days ago
100.0 % uptime
Today
Insights Operational
90 days ago
100.0 % uptime
Today
Integration Service Operational
90 days ago
100.0 % uptime
Today
Process Mining Operational
90 days ago
100.0 % uptime
Today
Task Mining Operational
90 days ago
100.0 % uptime
Today
Test Manager Operational
90 days ago
100.0 % uptime
Today
IXP Operational
90 days ago
100.0 % uptime
Today
Serverless Robots Operational
90 days ago
100.0 % uptime
Today
Solutions Management Operational
90 days ago
100.0 % uptime
Today
Customer Portal Operational
90 days ago
100.0 % uptime
Today
Studio Web Operational
90 days ago
100.0 % uptime
Today
Context Grounding Operational
90 days ago
100.0 % uptime
Today
Autopilot for Everyone Operational
90 days ago
100.0 % uptime
Today
Agentic Orchestration Operational
90 days ago
100.0 % uptime
Today
Autopilot (Plugins) Operational
90 days ago
100.0 % uptime
Today
Marketplace Operational
90 days ago
100.0 % uptime
Today
Agents Operational
90 days ago
99.44 % uptime
Today
Autopilot for Developers Operational
90 days ago
100.0 % uptime
Today
Delayed EU Operational
90 days ago
99.96 % uptime
Today
Automation Cloud Operational
90 days ago
100.0 % uptime
Today
Orchestrator Operational
90 days ago
100.0 % uptime
Today
Automation Ops Operational
90 days ago
100.0 % uptime
Today
Cloud Robots - VM Operational
90 days ago
99.68 % uptime
Today
Documentation Portal Operational
90 days ago
100.0 % uptime
Today
Document Understanding Operational
90 days ago
100.0 % uptime
Today
Insights Operational
90 days ago
100.0 % uptime
Today
IXP Operational
90 days ago
99.87 % uptime
Today
Serverless Robots Operational
90 days ago
100.0 % uptime
Today
Solutions Management Operational
90 days ago
100.0 % uptime
Today
Customer Portal Operational
90 days ago
100.0 % uptime
Today
Autopilot (Plugins) Operational
90 days ago
100.0 % uptime
Today
Marketplace Operational
90 days ago
100.0 % uptime
Today
UAE Operational
90 days ago
99.94 % uptime
Today
Automation Cloud Operational
90 days ago
100.0 % uptime
Today
Orchestrator Operational
90 days ago
100.0 % uptime
Today
Automation Hub Operational
90 days ago
100.0 % uptime
Today
AI Center Operational
90 days ago
100.0 % uptime
Today
Apps Operational
90 days ago
100.0 % uptime
Today
Automation Ops Operational
90 days ago
100.0 % uptime
Today
Computer Vision Operational
90 days ago
100.0 % uptime
Today
Insights Operational
90 days ago
100.0 % uptime
Today
Test Manager Operational
90 days ago
100.0 % uptime
Today
Serverless Robots Operational
90 days ago
100.0 % uptime
Today
Studio Web Operational
90 days ago
100.0 % uptime
Today
Context Grounding Operational
90 days ago
100.0 % uptime
Today
Autopilot for Everyone Operational
90 days ago
100.0 % uptime
Today
Autopilot (Plugins) Operational
90 days ago
100.0 % uptime
Today
Agents Operational
90 days ago
99.45 % uptime
Today
Autopilot for Developers Operational
90 days ago
100.0 % uptime
Today
Cloud Robots - VM Operational
90 days ago
99.56 % uptime
Today
Context Grounding Operational
90 days ago
100.0 % uptime
Today
Integration Service Operational
90 days ago
100.0 % uptime
Today
Operational
Degraded Performance
Partial Outage
Major Outage
Maintenance
Major outage
Partial outage
No downtime recorded on this day.
No data exists for this day.
had a major outage.
had a partial outage.

Scheduled Maintenance

Update to Outbound IP Ranges for Multiple Services to offer a better experience in Delayed Europe and Delayed United States Apr 6, 2026 10:00 - Apr 9, 2026 17:00 UTC

We are expanding our lists of Outbound IP addresses, with the new values coming into effect. To avoid disruptions, make sure you update your firewall configuration with the newly added values before the specified date.

For the updated lists of Outbound IP addresses and the impacted services, please refer to this page: https://docs.uipath.com/fr/automation-cloud/automation-cloud/latest/admin-guide/configuring-firewall

Posted on Mar 25, 2026 - 12:20 UTC
Apr 1, 2026

No incidents reported today.

Mar 31, 2026
Resolved - The issue is fixed and service is healthy.
Mar 31, 10:09 UTC
Monitoring - Team has rolled out the fix and currently monitoring the service health.
Mar 31, 09:03 UTC
Investigating - We are currently experiencing an outage affecting UiPath Data Service across multiple regions. Our engineering team is actively investigating the root cause and working to restore full functionality as quickly as possible.
Mar 31, 08:42 UTC
Mar 30, 2026
Resolved - Issue is now resolved.
Mar 30, 18:26 UTC
Update - Team is making progress on a fix deployment, but in the meanwhile customers can manually mitigate this issue by adding a serverless machine template to the folder.
Mar 30, 13:34 UTC
Identified - Team is working on a fix deployment, but in the meanwhile customers can manually mitigate this issue by adding a serverless machine template to the folder.
Mar 30, 11:36 UTC
Investigating - Uipath Agents that are newly deployed in Canada, Japan and USA will not start unless a serverless machine template is assigned to the folder.

We are working on a fix, but in the meanwhile customers can manually mitigate this issue by adding a serverless machine template to the folder.

Mar 30, 10:12 UTC
Mar 29, 2026

No incidents reported.

Mar 28, 2026

No incidents reported.

Mar 27, 2026

No incidents reported.

Mar 26, 2026
Completed - The scheduled maintenance has been completed.
Mar 26, 17:00 UTC
In progress - Scheduled maintenance is currently in progress. We will provide updates as necessary.
Mar 23, 10:00 UTC
Update - We will be undergoing scheduled maintenance during this time.
Mar 1, 06:03 UTC
Update - Due to the complexity of the rollout, the maintenance window might get updated, compared to the initially communicated schedule. This could be necessary, as our teams are actively working to avoid any service disruption during the updated window. Please keep an eye on the https://status.uipath.com/
Feb 4, 10:10 UTC
Scheduled - We are expanding our lists of Outbound IP addresses, with the new values coming into effect from January 26th, 2026 onwards. To avoid disruptions, make sure you update your firewall configuration with the newly added values before the specified date.

For the updated lists of Outbound IP addresses and the impacted services, please refer to this page: https://docs.uipath.com/fr/automation-cloud/automation-cloud/latest/admin-guide/configuring-firewall

Jan 27, 06:11 UTC
Postmortem - Read details
Mar 27, 20:24 UTC
Resolved - The issue has been resolved.
Mar 26, 03:45 UTC
Update - We are testing the fix and will share another update once the fix is ready to ship.
Mar 25, 20:07 UTC
Identified - We are actively working on a fix to ensure the cache is properly invalidated upon deployment. We'll share another update once the fix is ready to ship.
Mar 25, 18:41 UTC
Investigating - Agent Builder might not load for some customers. Impact is seen in multiple regions. The current workaround is to disable cache in the browser and refresh the page, while we are investigating the root cause.
Mar 25, 18:27 UTC
Mar 25, 2026
Resolved - The issue has been successfully resolved, and the service is now fully operationa
Mar 25, 18:11 UTC
Monitoring - Identified the issue and rolled a fix for resolution. we are actively monitoring.
Mar 25, 17:59 UTC
Update - Users are unable to create Integration Service connections in US region
Mar 25, 17:33 UTC
Investigating - We are currently investigating an issue affecting the creation of Integration Service connections. Further updates will be provided shortly.
Mar 25, 17:23 UTC
Completed - This scheduled maintainace is been cancelled
Mar 25, 13:56 UTC
Scheduled - We will be performing scheduled maintenance for the IntegrationService databases in US from 26th March 6:00 AM UTC to 26th March 10 AM UTC.

Expected Downtime: A subset of customers in the region will experience brief service interruptions during the maintenance window.

Impact: No data loss. All other UiPath components will continue to function normally.

Mar 17, 10:44 UTC
Mar 24, 2026

No incidents reported.

Mar 23, 2026
Postmortem - Read details
Mar 26, 20:07 UTC
Resolved - The issue has been resolved.
Mar 23, 23:26 UTC
Update - The issue has been resolved, and we are currently monitoring the system to ensure stabilit
Mar 23, 22:17 UTC
Monitoring - The issue has been resolved, and we are currently monitoring the system to ensure stabilit
Mar 23, 22:13 UTC
Update - We are actively working on a fix and taking steps to minimize the impact. We will continue to share updates as they become available.
Mar 23, 19:26 UTC
Update - We’ve identified the issue and are continuing to deploy mitigation. Work is ongoing, and we’re closely monitoring progress toward full resolution.
Mar 23, 17:51 UTC
Identified - We identified the issue and are working deploying the mitigation.
Mar 23, 16:23 UTC
Investigating - We are investigating the incident.
Mar 23, 15:27 UTC
Completed - This Scheduled Maintanace has been cancelled
Mar 23, 15:44 UTC
Scheduled - We will be performing scheduled maintenance for the IntegrationService databases in EU from 24th March 2:00 AM UTC to 24th March 6:00 AM UTC.

Expected Downtime: A subset of customers in the region will experience brief service interruptions during the maintenance window.

Impact: No data loss. All other UiPath components will continue to function normally.

Mar 16, 05:32 UTC
Resolved - The issue has been resolved.
Mar 23, 12:34 UTC
Monitoring - A fix has been deployed and the service is recovered.
Current status: We are monitoring the system to ensure stability and full recovery.

Mar 23, 12:00 UTC
Investigating - New connection creation in UiPath Integration Service is currently failing in the Europe region. Existing connections and running automations are not impacted.

The team is actively working to resolve the issue. We will continue to provide updates on status.

Mar 23, 11:42 UTC
Completed - The scheduled maintenance has been completed.
Mar 23, 11:00 UTC
In progress - Scheduled maintenance is currently in progress. We will provide updates as necessary.
Mar 23, 06:00 UTC
Scheduled - We will be performing scheduled maintenance for the IntegrationService databases in US from 23rd March 6:00 AM UTC to 23rd March 10 AM UTC.

Expected Downtime: A subset of customers in the region will experience brief service interruptions during the maintenance window.

Impact: No data loss. All other UiPath components will continue to function normally.

Mar 16, 05:17 UTC
Mar 22, 2026

No incidents reported.

Mar 21, 2026

No incidents reported.

Mar 20, 2026
Resolved - The issue has been resolved. The system has remained stable during the monitoring period.
Mar 20, 07:57 UTC
Monitoring - A fix has been deployed and the service is recovering.
Current status: We are monitoring the system to ensure stability and full recovery. Further updates will be shared soon

Mar 20, 07:42 UTC
Update - We are currently investigating reports of an issue in Integration Service in multiple regions.

Impact: Integration Service existing connections are not visible in Orchestrator, and attempts to create a new connection result in no response

Our teams are actively working to identify the cause and assess the scope of the issue. Further updates will be shared as soon as more information becomes available.

Mar 20, 07:29 UTC
Investigating - We are currently investigating reports of an issue in Integration Service in Singapore region.

Impact: Integration Service existing connections are not visible in Orchestrator, and attempts to create a new connection result in no response

Our teams are actively working to identify the cause and assess the scope of the issue. Further updates will be shared as soon as more information becomes available.

Mar 20, 07:28 UTC
Mar 19, 2026
Completed - The scheduled maintenance has been completed.
Mar 19, 16:00 UTC
In progress - Scheduled maintenance is currently in progress. We will provide updates as necessary.
Mar 11, 10:01 UTC
Update - We will be undergoing scheduled maintenance during this time.
Mar 1, 06:02 UTC
Update - Due to the complexity of the rollout, the maintenance window might get updated, compared to the initially communicated schedule. This could be necessary, as our teams are actively working to avoid any service disruption during the updated window. Please keep an eye on the https://status.uipath.com/
Feb 4, 10:10 UTC
Scheduled - We are expanding our lists of Outbound IP addresses, with the new values coming into effect from January 26th, 2026 onwards. To avoid disruptions, make sure you update your firewall configuration with the newly added values before the specified date.

For the updated lists of Outbound IP addresses and the impacted services, please refer to this page: https://docs.uipath.com/fr/automation-cloud/automation-cloud/latest/admin-guide/configuring-firewall

Jan 22, 13:47 UTC
Mar 18, 2026
Resolved - We are actively working on implementing a fix.

Impact: Coded agents failed at the Prepare Python environment step when requires-python>=3.12 was set in pyproject.toml.
Workaround: Remove or lower the requires-python constraint in pyproject.toml to >=3.11 until the fix is deployed.

Next update: Additional updates will be provided as remediation continues.

Mar 18, 22:34 UTC
Update - We are actively working on implementing a fix.

Impact: Coded agents failed at the Prepare Python environment step when requires-python>=3.12 was set in pyproject.toml.
Workaround: Remove or lower the requires-python constraint in pyproject.toml to >=3.11 until the fix is deployed.

Next update: Additional updates will be provided as remediation continues.

Mar 18, 20:46 UTC
Identified - We have identified the cause of the disruption impacting Prepare Python environment step for Agents in Multiple Regions and are actively implementing a fix.

Impact: Coded agents failed at the Prepare Python environment step when requires-python>=3.12 was set in pyproject.toml. Workaround: Remove or lower the requires-python constraint in pyproject.toml to >=3.11 until the fix is deployed.

Next update: Additional updates will be provided as remediation continues.

Mar 18, 19:52 UTC