
Power Automate
Free tierEnterprise automation built into the Microsoft 365 ecosystem.
Facts at a glance
- Compute model
- Cloud (shared)
- Self-host
- Not available
- Regions
- US, EU, UK, CANADA, AU, ASIA, GOV-US
- Data residency
- US, EU, UK, CANADA, AU, ASIA, GOV-US
- Execution unit
- api-request
- Power Automate counts API requests against a daily per-user quota, not per-run billing. Standard Microsoft 365 users get 2,000 requests per 24 hours; Power Automate Premium gets 40,000; Per Flow plans get 250,000 per flow per day. Every action in a flow generates one request — including every iteration inside an Apply to each loop.
- Builder
- Visual (linear)
- Polling interval
- 1–5 min
- Branching
- Condition / Switch / Apply to each
- No fixed branch-count cap. The practical limits are the API request quota (loops burn requests fast) and the vertical step-list UI becoming unreadable past ~40-50 actions. Teams break big flows into child flows called from a parent to keep things manageable.
- SOC 2
- Compliant
- Trains AI on your data
- No
- SSO (SAML)
- included
- MCP server
- planned
- No first-party Power Automate MCP server as of February 2026. Microsoft has shipped related MCP servers in preview: Power Apps MCP Server (public preview), Process Mining MCP Server (preview), and Dataverse MCP Server. Community-built wrappers exist but are not official.
Section 2 — Is this for you?
Power Automate is the automation tool you pick when your team already lives in Microsoft 365. Outlook, Teams, SharePoint, OneDrive, Planner — all of that is a free, standard connector away. If your company pays for Microsoft anyway, a big chunk of Power Automate comes along for the ride.
It's also the one tool on this list where RPA is a first-class citizen. Cloud flows handle modern SaaS-to-SaaS automation. Desktop flows record and replay clicks in legacy apps that never got an API. Most competitors stop at the first; Power Automate does both in the same canvas.
Power Automate is the right pick when:
- You're a Microsoft 365 shop and most of your automation targets are Outlook, SharePoint, Teams, or OneDrive
- You need RPA — automating desktop apps, mainframes, or old web UIs that have no API
- You're already paying for Microsoft licenses and want to keep procurement simple
- You need a signed HIPAA BAA out of the box — Microsoft includes it automatically for covered entities
- You need government-cloud compliance (GCC, GCC High, FedRAMP High, DoD IL4)
Power Automate might work, but watch for:
- You use premium connectors like Salesforce, Dataverse, or SQL Server — each one flips the flow into a paid license for every triggering user
- You run workflows at high volume — standard Microsoft 365 users get 2,000 API calls per day, which goes fast
- Your run history needs to go past 28 days — EMEA environments are capped at 28 by GDPR, no exceptions
- You need fast, production-grade MCP server/client — Power Automate has no official MCP server as of early 2026
Look elsewhere when:
- You're not a Microsoft shop and don't plan to become one — Zapier is simpler and cheaper for non-Microsoft stacks
- You want a visual 2D canvas with routers and iterators — Make is closer to that mental model
- You want to self-host for free with no license cost — n8n is the only real choice
- You're a developer team that wants pay-per-compute-second — Pipedream fits that model better
Section 3 — The real story
Power Automate started life in 2016 as Microsoft Flow. The pitch was modest: give Office 365 users an IFTTT-style tool to glue their own apps together without bothering IT. It shipped inside the Office 365 admin surface, ran on Azure Logic Apps infrastructure, and mostly flew under the radar for the first two years.
Then Microsoft bought Softomotive in May 2020. Softomotive made WinAutomation, a desktop RPA tool, and Microsoft folded it in as "Power Automate Desktop." The product rebranded from Flow to Power Automate, joined the rest of the Power Platform (Power Apps, Power BI, Power Pages), and stopped being a side project.
The repositioning worked. Power Automate became Microsoft's answer to UiPath and Blue Prism in the RPA market, while keeping the cloud-flow product that competes with Zapier and Make. By 2026 it has an estimated 30,000+ enterprise customers and is bundled into nearly every serious Microsoft 365 plan in some form.
The identity is straightforward: this is Microsoft's automation platform for Microsoft shops. It plays beautifully with Teams, SharePoint, Outlook, Dataverse, Dynamics 365, and Azure. It can be made to work with non-Microsoft tools through premium connectors, but the further you get from the Microsoft estate, the more the cracks show.
The Power Platform family
Power Automate is one piece of a larger stack:
- Power Apps — low-code app builder, uses the same connectors
- Power BI — dashboards and analytics
- Power Pages — low-code website builder
- Copilot Studio — AI agent builder (used to be Power Virtual Agents)
- Dataverse — the shared database all of the above sit on top of
You don't need all of them to use Power Automate, but if your org is committed to the Power Platform, everything talks to everything else through Dataverse and shared environments.
Section 4 — How it works
Cloud flows vs desktop flows
Power Automate has two very different runtimes stapled together under one brand:
- Cloud flows run in Microsoft's cloud. They're the Zapier-equivalent: trigger fires, actions run, no machine of yours involved. Most people mean this when they say "Power Automate."
- Desktop flows run on a Windows machine you control. They automate the desktop itself — click this button, type into that field, scrape that table from a legacy ERP. This is the RPA side.
Desktop flows can run attended (user is logged in and watches) or unattended (runs on a dedicated machine or Microsoft-hosted VM with no one watching). Unattended requires a separate license.
You can trigger a desktop flow from a cloud flow, which is how most real automations stitch the two together — cloud flow receives a new Salesforce lead, kicks off a desktop flow that types the data into a 1998-era green-screen app.
The builder
Power Automate's cloud flow designer is a vertical step-list, not a 2D canvas. You pick a trigger at the top, then stack actions below it one after the other. Conditions and switches create indented branches inside the list.
This is the same UI pattern as Logic Apps (which Power Automate was originally built on). People with a Make or n8n background sometimes find it cramped — there's no zoom-out overview of a big flow. People with a spreadsheet background find it obvious.
Triggers: automated, instant, scheduled
- Automated triggers fire on external events. "When a new email arrives in Outlook." "When a SharePoint list item is created." Most popular ones are standard connectors.
- Instant triggers fire from a button click — in the Power Automate app, inside Teams, or from a Power App. Handy for on-demand automation.
- Scheduled triggers run on a cron-style timer. Once a day, once an hour, whatever.
The polling floor for most cloud flow triggers is 15 seconds to 1 minute, depending on the connector and your license tier.
Connectors, standard vs premium
This is the single most important concept to understand about Power Automate licensing.
- Standard connectors come free with most Microsoft 365 plans. Outlook, SharePoint, Teams, OneDrive, Planner, Excel Online, Forms. If your whole automation uses only these, you pay nothing extra.
- Premium connectors require a paid Power Automate license. Salesforce, Dynamics 365, Dataverse, SQL Server, ServiceNow, Adobe Sign, Workday, SAP. Using even one premium connector in a flow means every user who triggers that flow needs a paid license.
Microsoft reclassifies connectors occasionally. SQL Server was standard, then premium. The official premium list is the source of truth; check it before you budget.
Branching and loops
- Condition — an if/else branch. One true path, one false path.
- Switch — multi-way branching on a value.
- Apply to each — loop over an array. This is the one that quietly blows up your API quota.
- Do until — loop until a condition is met, with a max iteration cap.
- Scope — group actions together so you can try/catch as a unit.
Every loop iteration counts as a separate set of API calls against your daily quota. A flow that loops over 500 items and calls three actions per item racks up 1,500 requests fast.
Section 5 — Where it shines
Microsoft 365 is automated out of the box
If you live in Outlook, SharePoint, Teams, and OneDrive, Power Automate is the fastest path to automation. There's no "can I connect to Teams?" question — it's there, it's free, it works. Most M365 business users already have a license that includes cloud flows with standard connectors.
A new SharePoint list item can create a Teams post, fire off a Planner task, email a manager, and wait for an approval — without a single premium connector and without anything beyond what the company already pays for. This is the single biggest reason Power Automate adoption is massive inside enterprises.
Approvals that feel native
Power Automate's approvals feature is best-in-class for Microsoft-centric teams. You fire an approval action, the approver gets a prompt in Teams or Outlook they can respond to inline, and the flow waits for their answer. The approval lives in SharePoint, shows up in the Approvals Teams app, and can be escalated or delegated.
The newer "Create an approval request for an item or file" SharePoint action ties approvals directly into SharePoint's modern UI, so approvers don't even have to leave the list view. This is the thing Zapier has no real answer for.
RPA inside the same platform
Desktop flows let you automate apps that have no API. Record your clicks once, parameterize the inputs, and run it on a schedule. Put a cloud flow in front of it to handle the trigger, error handling, and logging. One product, two runtimes, one license.
For companies modernizing from 1990s-era enterprise software, this is often the only way to bridge the gap without a full rewrite.
Government and regulated industries
Power Automate has certifications most competitors don't. FedRAMP High, DoD DISA IL2 and IL4, CJIS, automatic HIPAA BAA, ISO 27001/27018, SOC 1/2/3, EU Data Boundary complete. The GCC and GCC High clouds are purpose-built for US government and defense contractors.
If you're in healthcare, financial services, or the public sector, this compliance footprint is a decisive advantage. Zapier, Make, and n8n can't match most of it. Only Workato comes close at the enterprise end.
Environments for real ALM
Power Platform environments let you set up separate dev, test, and prod sandboxes, with solutions to move work between them. Managed Environments adds sharing limits, IP controls, usage analytics, and governance guardrails.
For teams building production-grade automation — not shadow IT, but real automations the business depends on — this is the infrastructure you need. Most competitors treat ALM as an enterprise afterthought. Power Automate treats it as the default.
AI Builder and Copilot Studio
Power Automate includes AI Builder for document processing, form recognition, prediction models, and category classification — all with drag-drop configuration and no ML training required. Premium licenses ship with 5,000 AI Builder credits per user per month.
Copilot Studio sits alongside it for conversational agents. You can build a Teams chatbot that calls Power Automate flows as tools, use Copilot Studio's generative actions to let an agent choose which flow to run, and publish the whole thing to Teams, a website, or Slack.
Section 6 — What breaks most often
The premium connector licensing trap
This is the single biggest pain point with Power Automate, and it shows up in every enterprise audit.
You build a flow using Outlook and SharePoint — no license needed. Then someone adds a Salesforce action. Now every user who can trigger that flow needs a Power Automate Premium license at $15/user/month. Scale that across hundreds of users in a department, and you're suddenly $200K/year in unplanned Microsoft spend.
Microsoft audits have found unmanaged premium connector usage generating $200,000–$500,000 in surprise charges at EA true-up time. The fix is governance: lock down premium connectors via DLP policies, and make maker training mandatory before people get Premium trials.
The 30-day trial trap
Anyone in your tenant can start a free 30-day Premium trial and build flows with premium connectors during it. When the trial ends, those flows stop working unless someone buys a license for them — or start working as chargeable if auto-conversion is enabled.
This is the most common way shadow IT turns into an unplanned invoice. Lock it down in the admin center if your org is big enough for it to matter.
API request quotas hit you fast
Standard Microsoft 365 users get 2,000 API requests per day. Premium users get 40,000. A Per Flow plan gets 250,000 per flow per day.
An "apply to each" loop over 1,000 rows with three actions per row is 3,000 requests. That's over the standard quota in a single run. The 429 errors show up as mysterious "rate limit exceeded" failures in your run history.
Watch for loops, keep batch sizes small, and don't assume standard M365 users can handle serious volume.
28-day run history, no appeals in EMEA
Power Automate keeps run history for 28 days by default. In EMEA environments this is a hard GDPR cap — you cannot extend it. In non-EMEA environments you can shorten it (7 or 14 days) but not lengthen it.
Teams that need long-term audit trails of what ran when have to log into Dataverse, Azure Table Storage, or SharePoint themselves. This catches regulated teams off guard who expected a year of built-in history.
The canvas is a vertical list
The step-list designer is easy for small flows and painful for big ones. Once you pass 40-50 actions with nested conditions and scopes, the UI becomes a scrolling maze. There's no zoom-out overview. Pasting steps between flows is awkward.
Teams that grow into complex flows often break them into child flows — smaller flows called from a parent — just to keep the visuals manageable.
DLP policy surprises
Data Loss Prevention policies are how you prevent users from mixing "business" and "non-business" connectors in the same flow. The problem: policy changes apply to existing flows, and flows that suddenly violate the updated policy get quarantined — they stop running with no warning to the maker.
Admins who roll out new DLP policies without auditing existing flows can silently break production automations across their tenant.
Copilot Studio billing is still settling
Copilot Studio's move from "messages" to "Copilot Credits" in September 2025 was smooth for some customers and confusing for others. AI Builder credits are being phased out by November 1, 2026 in favor of a unified Copilot Credits pool.
If you've been running AI Builder workloads, plan on re-budgeting. The pay-as-you-go rate of $0.01 per credit is easy to reason about; the packaging and entitlements are the moving target.
Section 8 — Getting started reality
The fastest path: inside Microsoft 365
If your org has Microsoft 365, go to make.powerautomate.com, sign in with your work account, and you're already licensed for standard connectors. Click Create → Automated cloud flow, pick a trigger like "When a new email arrives in Outlook," and walk through the wizard.
Most first-time users build a flow that's actively useful within 20 minutes. The learning curve is easier than n8n or Make if you only use standard connectors.
Your first flow
Pick a trigger. "When an item is created in SharePoint." Sign in with your Microsoft account when prompted — permissions flow through your M365 identity, so it usually just works.
Add an action with the + New step button. Pick "Post a message in a chat or channel" for Teams, or "Send an email (V2)" for Outlook. Fill in the dynamic content fields by clicking the flyout — Power Automate remembers what came out of the trigger and offers those values as tokens.
Hit Save, then Test → Manually. When it runs green, the flow is live — it'll trigger automatically from now on.
The Power Automate Desktop path
For RPA, download Power Automate Desktop (free on Windows 10/11, bundled in Pro and Enterprise). It's a separate app, not a browser experience. Record a desktop automation by clicking through your target app while PAD captures the actions, then edit the resulting script in the desktop designer.
To trigger a desktop flow from the cloud — so it runs on a schedule or from a SaaS event — you'll need a machine credential or a Microsoft-hosted machine, plus a Premium or Process license.
Where people get stuck
- Premium connector surprise. You build a flow that works, share it with a coworker, and it fails for them because they don't have a Premium license. Always check the connectors a flow uses before sharing.
- The wrong environment. Every maker starts in the default environment, which is a mess by the time your tenant is a few months old. Ask your admin to create a dedicated environment for real work before you build anything important.
- Apply to each everywhere. Power Automate auto-wraps actions in "Apply to each" loops when it detects array data. This is convenient and also the #1 way flows silently blow their API quota. Know what you're looping over.
- The action got deprecated. Microsoft deprecates connector actions occasionally. Flows using the old action keep running but emit warnings, then eventually fail. Check the flow health dashboard periodically.
Free learning resources
Microsoft's Power Automate docs are comprehensive, if sometimes dry. The Power Platform Community forums are active. For video learners, Reza Dorrani and April Dunnam are the two YouTube channels most Power Automate users cite as the ones that actually taught them the product.
Section 9 — Migration translations
From Zapier
- Zap → Cloud flow. Both are trigger-plus-actions. Power Automate's cloud flow designer is a vertical step-list, not a 2D canvas.
- Task → Action (with an API request cost). Zapier bills per successful action. Power Automate counts API requests against your daily quota. The counting model is different; watch for apply-to-each loops that explode the count.
- Paths → Condition / Switch. Zapier Paths become Condition (if/else) or Switch (multi-way). Power Automate's branching model is more verbose but more predictable.
- Zapier Tables → Dataverse or SharePoint lists. Power Automate doesn't have a built-in data store. Teams usually use a SharePoint list for lightweight data, Dataverse for anything heavier.
- Code by Zapier → Office Scripts or Azure Functions. Power Automate has no inline code node. You run Office Scripts (Excel-hosted TypeScript) or call out to an Azure Function for custom logic.
- Zapier Interfaces → Power Apps. If you're coming from Zapier Interfaces, the Microsoft equivalent is Power Apps — the sister product in the Power Platform.
No automated import tool exists. Plan to rebuild flows manually.
From Make
- Scenario → Cloud flow. Similar concept, very different UI. Make's 2D canvas becomes Power Automate's vertical list. Big scenarios lose their visual overview.
- Router → Switch. The multi-way split translates cleanly. Power Automate doesn't have Make's "no route matched" fallback as an explicit element — you have to build the default case yourself.
- Iterator → Apply to each. Both loop over arrays. Apply to each is auto-generated when Power Automate sees an array; learn when to want it and when to avoid it.
- Aggregator → Compose or Select. Power Automate's Compose and Select actions are the closest equivalents to Make's aggregator. The mental model is a little more manual.
- Data Store → SharePoint list or Dataverse. No equivalent to Make's built-in Data Store. Pick a real backing store early.
- Per-operation billing → API request quota. The math usually flips. Flows that were expensive on Make (lots of modules per run) get cheaper on Power Automate Premium if you stay inside the request quota.
From n8n
- Workflow → Cloud flow. Same concept, different shape. Power Automate has no canvas.
- Code node → No equivalent. This is the biggest gap. Power Automate has no inline code primitive. You get Office Scripts, Azure Functions, or custom connectors — all of which are more friction than n8n's Code node.
- Self-host → Not possible. Power Automate cloud flows only run in Microsoft's cloud. Desktop flows run on machines you control, but that's not the same thing.
- Code-first expressions → Power Fx and WDL. Power Automate uses a proprietary expression language called WDL (workflow definition language). It's less flexible than JavaScript but more constrained in useful ways for non-developers.
- MCP → Not yet. Power Automate has no first-party MCP server. n8n users who rely on MCP triggers will find the current Power Automate answer unsatisfying.
From Pipedream
- Workflow → Cloud flow. Both are step-by-step. The big difference: Pipedream is code-first, Power Automate is UI-first. Everything you wrote in JavaScript needs to be re-expressed in connector actions or offloaded to Azure Functions.
- Credits (compute seconds) → API request quota. Different counting model. Long-running compute-heavy workflows map badly to Power Automate's quota system.
- Pipedream Connect (auth UI for end-users) → Custom connectors and solutions. No direct equivalent; if you're embedding automation in a product you sell, Power Automate is probably the wrong tool.
- Code flexibility → Much less. If your Pipedream workflows lean heavily on custom code, the migration is hard. Consider whether you really want to migrate or whether a different tool fits better.
Section 10 — AI & MCP readiness
AI Builder
AI Builder is Power Automate's built-in AI layer. It includes:
- Document processing — extract structured data from invoices, receipts, and forms
- Form processor — read custom form layouts
- Prediction models — train binary or multi-class classifiers on your own data
- Object detection — identify items in images
- Sentiment analysis, key phrase extraction, language detection — off-the-shelf text models
Power Automate Premium seats come with 5,000 AI Builder credits per user per month. Credits are consumed by AI Builder operations (e.g., one document processed = a specific credit cost per the rate table).
Important 2026 change: Microsoft is phasing out AI Builder credits on November 1, 2026, in favor of unified Copilot Credits. Existing customers can renew through that date; new customers have already been moved to Copilot Credits only.
Copilot Studio
Copilot Studio (formerly Power Virtual Agents) is Microsoft's AI agent builder. You build an agent with topics, flows, knowledge sources, and generative actions, then publish it to Teams, a website, or Microsoft 365 Copilot.
Power Automate is one of the primary action types inside Copilot Studio. Your cloud flows become tools the agent can call when it reasons about a user's question. This is where Microsoft's "AI agent that takes action" story lands.
Pricing: $200/month for 25,000 Copilot Credits (tenant-level, standalone license), or pay-as-you-go at $0.01/credit. Copilot Studio that's bundled with Microsoft 365 Copilot lets licensed users build and use internal agents at no extra cost.
Generative actions
The newer model is generative orchestration: the agent receives a user request, looks at the available flows and plugins, and decides which ones to chain together automatically. You don't have to script the branching. You describe what tools exist and let the model figure out how to use them.
For most teams this is still experimental. For some use cases (agent-driven lead qualification, agent-driven IT support) it's already producing real results.
MCP status
As of February 2026, Power Automate does not have an official first-party MCP server. Microsoft has shipped or previewed:
- Power Apps MCP Server (public preview) — lets agents perform tasks inside Power Apps
- Process Mining MCP Server (preview) — exposes Power Automate Process Mining analytics to MCP clients
- Dataverse MCP Server — lets MCP-aware clients query Dataverse directly
None of these expose cloud flows as MCP tools the way n8n's MCP Server Trigger does. Community-built MCP wrappers exist (see the rcb0727/powerautomate-mcp-docs project), but they're not first-party.
If first-class MCP support is a hard requirement in 2026, n8n and Make are further along than Power Automate.
The summary
Power Automate's AI story is rich if you buy into the Microsoft AI stack. AI Builder for structured data extraction, Copilot Studio for conversational agents, Copilot integration for inline AI inside cloud flows. If you're already buying Microsoft 365 Copilot, a lot of this is already lit up.
Where it's thinner than the competition: inline code-based AI logic, first-party MCP server/client support, and provider flexibility. Power Automate's AI leans toward OpenAI-backed Azure services rather than multi-model pluggability.
Section 11 — Compliance at a glance
The facts
- SOC 1 / 2 / 3: Yes — Power Platform is covered
- ISO 27001 / 27018: Yes
- GDPR: Yes — EU Data Boundary complete for Power Platform as of February 2025
- HIPAA / BAA: Yes, automatically — Microsoft's BAA covers Power Automate when you're a covered entity on eligible M365 or Dynamics 365 plans
- Data residency: Tenant region — available in all major Microsoft geos (US, EU, UK, Canada, Australia, Asia, etc.)
- FedRAMP High: Yes (Power Automate US Government / GCC)
- DoD DISA IL2 / IL4: Yes (GCC High)
- CJIS: Yes (for criminal justice data)
- SSO (SAML / OIDC): Yes — through Microsoft Entra ID
- RBAC: Yes — environment-level and Dataverse table-level
- Audit logs: Yes — via Microsoft 365 compliance center
- Trains AI on your data: No — Microsoft's commercial data protection covers Power Automate under the Microsoft Copilot Commercial Data Protection terms
- Self-hostable: No — cloud flows run in Microsoft's cloud only (desktop flows run on your machines)
The fine print
Power Automate's compliance footprint is the widest on this list. If you're a regulated-industry buyer — healthcare, financial services, public sector, defense — Power Automate is almost always on the short list for that reason alone.
The EU Data Boundary is a big deal for European buyers. As of February 2025, Microsoft has completed the multi-year project to keep commercial and public-sector customer data and pseudonymized personal data inside the EU / EFTA for all Microsoft core cloud services — Power Platform included. A migration tool exists for older cloud flows created before November 2024 that still have some pseudonymized data temporarily transferred out of the EU; admins should run it to fully qualify.
The HIPAA BAA is automatic for covered entities on eligible Microsoft plans. You don't sign anything extra; the Microsoft Products and Services Data Protection Addendum includes it by default. That's rare. Most competitors require an explicit BAA process and an enterprise plan.
For US government work, the GCC / GCC High / DoD options run on physically separated infrastructure with screened US personnel only. FedRAMP High ATO inheritance from Azure Government and Azure DoD means Power Automate rides on the same authorization boundary as the rest of the Microsoft government cloud — which is why federal agencies keep picking it.
The one thing Power Automate doesn't offer that some buyers want: self-hosting. Cloud flows only run in Microsoft's cloud, period. If your compliance regime says "no third-party cloud, ever," you're in n8n territory.
For team management, SSO, RBAC, audit logs, environments, and Managed Environments are all supported through Microsoft Entra ID and the Power Platform admin center. If your IT team already runs Microsoft 365 governance, Power Automate governance uses the same tools and the same mental model. That's the quiet superpower of picking Power Automate — not that it's a better automation tool than the alternatives, but that it folds into a governance stack your company already has.
Pricing
Verify at Power Automate →- ✓Included with Microsoft 365
- ✓Standard connectors only
- ✓Cloud flows only
- ✓5,000 daily API requests
- ✓Premium connectors (Salesforce, SAP, etc.)
- ✓Attended RPA (desktop flows)
- ✓AI Builder credits
- ✓Custom connectors
- ✓Unattended RPA bots
- ✓Scheduled desktop automation
- ✓Per-bot pricing
- ✓Process mining
- ✓Unattended RPA on Microsoft-hosted VM
- ✓Azure-managed infrastructure
- ✓Everything in Process plan
- ✓Dedicated virtual machine
- ✓Unlimited premium connectors
- ✓Governance & DLP policies
- ✓Custom SLAs
- ✓Dedicated support
Annual billing prices shown. Verify at Power Automate's pricing page before purchasing.
Get started with Power Automate
Visit Power AutomateDetails
Compare Power Automate with...
Other platforms
Workflow guides built with Power Automate
Real, step-by-step automations using Power Automate — across CRMs, Slack, e-commerce and more.