Questions tagged [azure-logic-apps]

Azure Logic Apps is a cloud service that helps you build automated business process and enterprise integration workflows through a visual designer. For more control, you can change the runtime by using the Logic Apps Workflow Definition Language. Logic Apps easily consume API apps such as Outlook 365, DropBox, and more. You can call logic apps with schedule-based triggers, webhook triggers, or programmatically.

Azure Logic Apps is a cloud service that helps you build automated business process and enterprise integration workflows by using a visual designer. For more control, you can create or extend existing workflows with the Logic Apps Workflow Definition Language. Logic apps easily consume API apps such as Outlook 365, DropBox, SendGrid, and more. You can call logic apps with schedule-based triggers, webhook triggers, or programmatically.

For more information, see the Azure Logic Apps page at https://azure.microsoft.com/services/logic-apps, or the documentation at https://learn.microsoft.com/azure/logic-apps/. Learn more about the Workflow Definition Language at https://learn.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language.

3898 questions
10
votes
1 answer

how to remove dependency on integration account when performing debatching/decoding

Logic-apps allow you to do lots of EDI / file-processing operations, such as flat-file decoding: The FromApexDemoEntry is a schema that is hosted in the integration account. Is it possible to perform these operations without having an integration…
Alex Gordon
  • 57,446
  • 287
  • 670
  • 1,062
9
votes
7 answers

Azure Logic Apps - Failed with error: 'The browser is closed.'. Please sign in again

I have created an Azure Logic App in the Azure portal and successfully added several steps. I add the Azure DevOps List Iterations step and click the sign-in button. A popup prompts me to sign-in and then closes and I am left with the follow error…
Magic Bullet Dave
  • 9,006
  • 10
  • 51
  • 81
9
votes
2 answers

ARM template Office 365 connection for logic apps

I have a logic app that I am trying to automate through an ARM Template. The logic app requires a connection to Office 365. Below I have the template for the connection generated from the automation pane of the Azure Portal. When I run the script…
Murray Foxcroft
  • 12,785
  • 7
  • 58
  • 86
9
votes
1 answer

What is the correct syntax for the Queries parameter in the Logic Apps Function connector?

I have an azure function that calculates additional output if you include a query parameter in it's url. I would like to use this function in a logic app, but I am getting an error trying to use the Queries parameter of the azure function connector…
John Atwood
  • 1,505
  • 10
  • 19
9
votes
2 answers

Azure logical app current time

I have an Azure Logical app that every hour gets a file from a website and create a file in OneDrive. Since the file does not have a dynamic name, it gets replaced every time. Is there a way to put the current date time in the filename? Thank…
8
votes
2 answers

Is there a way to secure an Azure Function that will only be called from a specific Azure Logic App?

I understand that Azure Functions are potentially open endpoints on the internet if I read Microsoft’s documentation correctly and per conversations with a friend who has some experience working with web development paradigms that Azure Functions…
8
votes
3 answers

Is there a performance benefit of choosing the `azure function` vs the `http request` action?

Is there a performance benefit of choosing the azure function vs the http request action? There seems to be two ways to add an azure function to your logic app. The first way is to simply trigger an Http Request: Alternatively, we can choose Azure…
Alex Gordon
  • 57,446
  • 287
  • 670
  • 1,062
8
votes
5 answers

Azure Logic Apps: how to run Powershell script or Azure CLI?

I'm building my Azure Logic Apps worklow which is supposed to check some conditions and run following Powershell: Stop-AzureWebsiteJob -Name MyWebsite -JobName MyWebJob Start-AzureWebsiteJob -Name MyWebsite -JobName MyWebJob -JobType Continuous The…
mickl
  • 48,568
  • 9
  • 60
  • 89
8
votes
1 answer

Logic Apps: Servicebus Polling trigger processes message multiple times

I have a Logic App polling a servicebus queue. With concurrency-control on the Logic App I've limited it to max 5 concurrent instances. I use the trigger "When a message is received in a queue (auto-complete)" When putting, for example, 8 messages…
8
votes
3 answers

Deserializing ServiceBus content in Azure Logic App

I'm trying to read the content body of a message in an Azure Logic App, but I'm not having much success. I have seen a lot of suggestions which say that the body is base64 encoded, and suggest using the following to…
Andrew Williamson
  • 8,299
  • 3
  • 34
  • 62
8
votes
3 answers

Logic app blob trigger not fired on subfolder

I am referring to this feedback: Azure Storage Blob Trigger to fire when files added in Sub Folders I have a Azure Logic App that is fired every time a blob is added in a container. This works fine when all the documents are at the root of the…
Thomas
  • 24,234
  • 6
  • 81
  • 125
8
votes
2 answers

Parallelize Azure Logic App executions when copying a file from SFTP to Blob Storage

I have an Azure Logic App which gets triggered when a new file is added or modified in an SFTP server. When that happens the file is copied to Azure Blob Storage and then gets deleted from the SFTP server. This operation takes approximately 2…
Florin D. Preda
  • 1,358
  • 1
  • 11
  • 25
8
votes
4 answers

Can an Azure Logic App have multiple start triggers?

Can an Azure Logic App have multiple start triggers? I've read the triggers docs at MSDN but can't see anything on having multiple triggers
SteveC
  • 15,808
  • 23
  • 102
  • 173
8
votes
3 answers

How do I manage / delete my Azure logic app connections

We are building a logic app in Azure. It consists of an Office 365 new mail item and a service bus queue item. What we cant work out is how to manage / delete the connections: Any advice would be greatly appreciated
RuSs
  • 1,725
  • 1
  • 29
  • 47
7
votes
1 answer

How do I access an array value through expression syntax in a logic app

I've got a Logic App I am working with in Azure where I need to access a certain nested value from some JSON on an Http Trigger. I need to access the threshold value (5) and the value of the second item in the dimensions array…
tokyo0709
  • 1,897
  • 4
  • 28
  • 49