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
45
votes
8 answers

Azure Functions vs. Logic Apps

Functions & Logic Apps are two distinct offerings by Microsoft Azure. I wonder what are the use cases that one should favor the new Functions offering over Logic Apps.
Rotem Varon
  • 1,597
  • 1
  • 15
  • 32
28
votes
6 answers

How to rename existing Azure Logic App?

I have created a logic app, but now I want to rename existing logic app in Microsoft Azure portal. I have been looking for options, but could not find one.
Ravi Anand
  • 5,106
  • 9
  • 47
  • 77
26
votes
4 answers

How to modify Content-Type in postman

I'm trying to test my logic app API in postman but I'm having an issue with header postman automatically adding Content-Type = multipart/form-data; when I hover on the content-type tab seeing this "use the request body tab to control the value or…
Gaurav Joshi
  • 861
  • 1
  • 11
  • 17
24
votes
2 answers

How can I host a TCP Listener in Azure?

I am looking to build an application in Azure which will act as TCP listener, receive TCP message streams on a specified port, and then add the information to a database. The incoming TCP communication will be secured with a certificate. I'm…
James Wood
  • 17,286
  • 4
  • 46
  • 89
18
votes
1 answer

Declaring and using a "parameter" in Logic Apps

In my file LogicApp.parameters.json I've declared the extra parameter called MyFirstNewParameter full file contents below { "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", "contentVersion":…
16
votes
4 answers

How to do a 'null' check in 'if' condition action of Azure Logic App

I've created a logic app which contains some trigger, an 'http' connector and then an 'If' condition activity. The 'http' connector returns a 'json' result say jsonObj. I'm able to check condition as…
Santhosh Ramini
  • 384
  • 2
  • 5
  • 20
15
votes
1 answer

Using "Execute JavaScript Code" action in Azure Logic App: error about integration account being required

I am trying to run custom JavaScript in logic App using an (Execute JavaScript Code) action, but I am getting this error: Failed to save logic app httpResponses. The workflow must be associated with an integration account to use the workflow run…
ZCoder
  • 2,155
  • 5
  • 25
  • 62
15
votes
1 answer

Possible to put Logic App Run History Identifier inside logic app action input field?

Hi i was searching on if there is any way to put the logic app identifier into a logic app actions input field? Is it possible to retrieve it some how?
H4p7ic
  • 1,669
  • 2
  • 32
  • 61
14
votes
1 answer

Azure Logic Apps : Get HTTP Request Header Key Value into Conditional Check

I've created a Logic App in the Azure Portal. It's triggered by an HTTP POST and in that POST I have set a Key called "jmb_private_key". After the Logic App receives the HTTP Request I've placed a Conditional which I want to check for the Key. …
jmbmage
  • 2,487
  • 3
  • 27
  • 44
13
votes
3 answers

How to get query parameters in a Logic App?

I'm trying to pass an extra query parameter to Azure logic app so that I can process below data in the Logic App workflow For Example https://logicURL?SelectedData="%7BsiteURL%3AXYZ.sharepoint.com%2Fsites%2FXYZDev%7D" (encoded string) In HTTP action…
12
votes
1 answer

Getting callback url for logic app in ARM

I'm deploying an ARM template, which includes: azure functions + logic apps. Following link i've created a simple flow: one of method from azure functions calls logic app. Let's name the method as "A". The logic app as "B": A calls B. The logic app…
12
votes
1 answer

When should I use a Logic App as opposed to a Web Job?

I'm planning to build an integration between two systems in Azure. The basic architecture of the application will be the Azure equivalent of an on-premise console app. E.g. on a scheduled basis shuffle data between the two systems I can see two ways…
12
votes
2 answers

Is it possible to have multiple triggers in Azure Logic Apps

When you look at the summary tile on a Logic App in the Azure Portal, it says '1 trigger, x actions' Which made me wonder is it possible to put multiple triggers in a single Logic App? or do I need to create distinct logic apps for each function…
Michael B
  • 11,887
  • 6
  • 38
  • 74
11
votes
2 answers

AWS equivalent to Azure Logic Apps

Is there an AWS equivalent to Azure Logic Apps? Furthermore I would like to know if someone has experiences regarding a migration of Azure Integration Services into AWS and if a comparison between Azure and AWS regarding the integration stack…
11
votes
3 answers

PostAsJsonAsync doesnt seem to post body parameters

I have created an Azure logic app that exposes a REST endpoint. The following JSON body works fine when I call it through postman. { "to": "ggtest@yahoo.com", "subject": "Hello there", "message": "Hello there!!!!!" } I'm able to see the…
Jack Shepherd
  • 373
  • 1
  • 4
  • 17
1
2 3
99 100