Can I launch a "process" from within a logic app which would finish the interactive workflow, but allow the background steps to complete

Anonymous
2023-04-04T17:00:46.22+00:00

Browser->APIM->Logic App. The workflow consists of two key steps that are the heart of the transaction. When these are done, I would like to return control back to the Browser. The remaining steps can happen in the background. What are the best practices to make this happen? In the example below, a transfer occurs which is synchronous. When steps 1 and 2 are complete, fire off the asynch email process and return control back to the browser. E.g. Transfer funds

  1. pull funds from the sender
  2. put funds to the receiver
  3. send email to the sender & receiver confirming the action took place (don't want the Browser to wait for this to complete)
Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
{count} votes

1 answer

Sort by: Most helpful
  1. Pramod Valavala 20,656 Reputation points Microsoft Employee Moderator
    2023-04-18T01:03:05.8133333+00:00

    You can create a separate logic app that performs these "asynchronous" operations and call it from within your original logic app. Ensure this second logic app doesn't have a Response Action, so that the nested call immediately returns when called from the first logic app.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.