The Journey of a Single Request

Opening Hook Imagine a customer raises a support ticket. "Our Power Automate flow is suddenly slow." As developers, our instinct is usually to open the flow designer. Sometimes one of those fixes works. Most of the time... We are fixing the wrong thing. Because we don't actually understand what happens after a flow is triggered. … Continue reading The Journey of a Single Request

There Is No Such Thing as “The Power Platform API Limit”

Every few months I see another discussion where someone says: "Dataverse API limit is 6000." "No, it's 40,000 requests." "Actually it's 250,000." "Power Automate allows 500,000." Everyone sounds correct. Yet everyone is talking about a completely different limit. That is exactly why Power Platform limits are so confusing. Microsoft hasn't created one limit. They have … Continue reading There Is No Such Thing as “The Power Platform API Limit”

Power Automate Data Operations What They Actually Do and When to Use Each One

There is a quiet tax on most Power Automate flows: unnecessary loops. You retrieve 500 items from SharePoint. You need 12 of them. So you loop through all 500, checking a condition on each one, building a new array one item at a time. The flow works. It's also doing 488 units of work it … Continue reading Power Automate Data Operations What They Actually Do and When to Use Each One

Stop Copying Logic Across Flows. Use Child Flows

Here's a scenario that plays out on almost every Power Platform project. You have three approval workflows: one for project proposals, one for leave requests, one for expense submissions. Each one needs to look up the list of approvers from a SharePoint group. So you build that lookup logic into the first flow, then copy … Continue reading Stop Copying Logic Across Flows. Use Child Flows

Stop Naming Your Flow Actions “Scope” and “Apply to Each”

Power Automate gives every action a default name the moment you drop it onto the canvas. "Apply to each", "Condition", "Send an email (V2)". Then you move on, wire up the logic, and ship the flow. Six months later, someone maybe you, maybe a colleague opens it for the first time. They see twelve nested … Continue reading Stop Naming Your Flow Actions “Scope” and “Apply to Each”

Connecting to Dataverse: Migrating from Office365 / WS-Trust to Modern OAuth

If you’ve worked with older Dynamics 365 or CRM SDK codebases, you’ve probably seen this: AuthType=Office365 Or worse silent authentication failures after Microsoft tightened security policies. This post explains: Why legacy authentication was deprecated What breaks in old solutions How to migrate safely How to modernize your tooling If you're maintaining older code, this post … Continue reading Connecting to Dataverse: Migrating from Office365 / WS-Trust to Modern OAuth

Connecting to Dataverse from a Single Page App (SPA) using MSAL + CORS

In the previous post, we covered multi-tenant Server-to-Server (S2S) authentication the pattern for backend SaaS platforms. Now we switch to the opposite extreme: A browser-only app (React / Angular / Vue) that calls Dataverse directly. No backend proxy.No middleware.Just JavaScript, OAuth tokens, and the Dataverse Web API. This is the SPA + CORS pattern. When … Continue reading Connecting to Dataverse from a Single Page App (SPA) using MSAL + CORS

Connecting to Dataverse: Multi-Tenant Server-to-Server (SaaS / ISV Architecture)

In the previous post, we implemented Server-to-Server authentication for a single tenant. That works perfectly when: You own the tenant. The app runs internally. It serves one organization. But what if: You are building a commercial product? Multiple customers must connect their own Dataverse environments? You’re publishing to AppSource? Your app needs to scale across … Continue reading Connecting to Dataverse: Multi-Tenant Server-to-Server (SaaS / ISV Architecture)

Connecting to Dataverse: Modern .NET Authentication with ServiceClient

In the previous post, we mapped the authentication landscape. Now we move from architecture to implementation. This post shows you how to connect to Dataverse using modern .NET patterns with the recommended client: Microsoft.PowerPlatform.Dataverse.Client.ServiceClient If you're building: Console apps Migration utilities Admin tools DevOps automation Internal utilities XrmToolBox-style plugins This is your starting point. Why … Continue reading Connecting to Dataverse: Modern .NET Authentication with ServiceClient

Mastering Dataverse Bulk Delete – Track, Audit, and Debug Your Bulk Deletion Jobs

So far in this series, we’ve explored how to initiate and automate bulk deletions in Dataverse, and how to protect critical records through retention. But how do you know your deletion job actually worked? In Part 4, we break down the tools and methods to track, monitor, and troubleshoot Bulk Delete operations. 1. Meet the … Continue reading Mastering Dataverse Bulk Delete – Track, Audit, and Debug Your Bulk Deletion Jobs