An Azure service that automates the access and use of data across clouds without writing code.
Hi @Alan Chen ,
Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.
The fact that direct HTTP calls (and Postman) succeed while "Choose a Logic Apps workflow" fails — combined with zero trigger history on the child — is the key clue here. It means the request is failing before it ever reaches the child's trigger, so this isn't a payload or trigger-schema issue.
Why these two paths behave differently
- The HTTP action (and Postman) call the child's trigger endpoint directly, authenticated via the SAS signature in that callback URL.
- "Choose a Logic Apps workflow" is a built-in connector action that resolves and invokes the child through the Azure Resource Manager (ARM) control plane, using the parent Logic App's own resource identity/permissions — not the trigger's SAS key.
So a working HTTP call doesn't rule out an issue on the nested-invoke path. Things to check, in order of likelihood:
- Stale action reference. If the child was renamed, redeployed, or its trigger was ever resaved (which regenerates the callback URL) after you first configured the parent's action, the parent may be holding a stale resource reference. Fix: open the "Choose a Logic Apps workflow" action, re-pick the child from the picker again, and save the parent.
- RBAC on the child resource. The parent Logic App needs at least Logic App Contributor (or Contributor) role scoped to the child's resource group or resource. Being in the same resource group doesn't guarantee this — check IAM on the child resource specifically, since role assignments can be scoped narrowly.
- Recreate the action. If the reference and permissions both look fine, try deleting the "Choose a Logic Apps workflow" action entirely and re-adding it fresh, reselecting the child. This clears any cached resolution that might be causing the immediate failure.
In the meantime: continuing to call the child via its HTTP trigger URL is a valid workaround, but you'll be managing the callback URL/SAS key yourself instead of relying on the built-in resource reference.
Please "upvote" if the information helped you. This will help us and others in the community as well.