Friday Fact: You can call other workflows in the same Logic App Standard — no HTTP request needed

  • João Ferreira
  • May 1, 2026
  • 2 min read

Building a big, complex workflow in a single file? There’s a better way — and it’s faster, cheaper, and cleaner than you might expect.

What’s the Situation?

When developers want to split logic across multiple workflows, the instinct is to trigger one workflow from another using an HTTP call. It works, but it has real costs — you’re making a network round trip, you’re exposing an endpoint, and you’re adding latency and potential points of failure.

There’s a built-in alternative most people don’t know about.

📝 One-Minute Brief

Logic Apps Standard lets you break large workflows into smaller ones without HTTP calls. This post explains how to call sibling workflows using the built‑in action, reducing latency, removing exposed endpoints, and keeping integrations cleaner and more efficient.

The best way

In Logic Apps Standard, all workflows inside the same Logic App share the same host. This means you can invoke a sibling workflow directly using the built-in Call workflow in this logic app action — no HTTP trigger, no URL, no authentication needed.

Just add the action, pick the workflow name from the dropdown, and pass your inputs. That’s it.

The Catch

A couple of things to keep in mind:

  • The workflow being called must have a Request trigger to accept inputs.
  • It only works within the same Logic App Standard app” — you can’t call across different Logic App instances this way.
  • The call can be synchronous — the parent workflow waits for the child to complete before continuing. Or asynchronous — the parent workflow calls but does not wait for the child to complete before continuing.

Why This Matters

  • Zero network overhead — the call stays in-process
  • No exposed HTTP endpoints to secure or manage
  • Makes it easy to break large workflows into smaller, reusable pieces
  • Cleaner run histories — each workflow logs its own execution independently

Think of it like calling a function inside the same application. Simple, fast, and free.

To lazy to read? We’ve got you covered! Check out our video version of this content!

Hope you find this helpful! If you liked the content or found it useful and would like to support me in writing more, consider buying (or helping to buy) a Star Wars Lego set for my son. 

Thanks for Buying me a coffe
Author: João Ferreira

João Ferreira is a Enterprise Integration Consultant at DevScope

Leave a Reply

Your email address will not be published. Required fields are marked *

The Ultimate Cloud
Management Platform for Azure

Supercharge your Azure Cost Saving

Learn More
Turbo360 Widget

Back to Top