You could just have one trigger for the mailbox and then leverage either conditionals or switch statements to handle different cases.
Note that there is a limit of 500 actions per workflow. In such cases, you could split actions and call them from the main logic app. The child logic apps in this case could simply be HTTP Triggered.
With the conditional actions, you would have to leverage parallel paths as well. Or you could use switch action if the decision is based on a single expression value.
@Pramod Valavala , i tried with conditional branches and parallel branches, and also with Switch, i didn't get the SNOW incidents created , can you please share the flow here
Apologies for not getting back sooner on this. Here is a sample of how a switch case could be used. The expression in the switch case is
toLower(split(triggerBody()?['subject'], ':')[0])
.Sign in to comment