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
7
votes
1 answer

Azure Api Connections: Change the connection name

I created a couple of Azure API connections and it allows me to change the display name, but there is no way to change the name itself. Apparently, it automatically creates the connections based on the connection type. Is there a way to control…
Saeid
  • 1,573
  • 3
  • 19
  • 37
7
votes
1 answer

Azure Logic Apps On-premises data gateway doesn't allow executing native SQL queries

I tried to execute a SQL query using Azure "On-Premises data gateway" from Azure Logic Apps. Running the logic resulted the following error message: { "status": 400, "message": "Gateway GetPassThroughNativeQueryMetadataAsync - this operation…
Saeid
  • 1,573
  • 3
  • 19
  • 37
7
votes
3 answers

Make Azure Logic Apps with Terraform, what are the limitations?

For what I can understand one can build Logic Apps with Terraform. However, the docs are still not very good, and it looks like this feature is pretty new. What are the limitations when it comes to TF and Azure Logic Apps? Are there any? I want to…
7
votes
2 answers

Logic App : Finding element in Json Object array (like XPath fr XML)

In my logic app, I have a JSON object (parsed from an API response) and it contains an object array. How can I find a specific element based on attribute values... Example below where I want to find the (first) active one { "MyList" : [ …
Chris Hammond
  • 2,064
  • 5
  • 27
  • 53
7
votes
2 answers

Azure Logic App service bus message content

I have logic app that is triggered by a service bus. The message content is not usable as it is just random characters. I suspect that perhaps it needs to be parsed but it is not clear how to do this. I have the following: Not enough reputation to…
7
votes
4 answers

Programmatically Schedule one-time execution of Azure function

I have looked through documentation for WebJobs, Functions and Logic Apps in Azure but I cannot find a way to schedule a one-time execution of a process through code. My users need to be able to schedule notifications to go out at a specific time in…
7
votes
1 answer

Ability to use KeyVault in Logic Apps for SQL Connectors

How to access Key Vault secrets in Logic app to provide secured authentication with SQL Connector.? Do we have any possibility to configure the JSON Script of the app? Logic App design work flow: I would like to configure ConnectionName, SQL…
ravi kiran
  • 371
  • 1
  • 5
  • 17
7
votes
5 answers

How can I merge the outputs from a For_Each loop in an Azure Logic App to a single flat array?

I have a For_Each loop in an Azure Logic App that calls another, nested, Logic App. The result from each iteration of the nested Logic Apps is a JSON object that contains an array of strings, like this: { "Results": ["string a", "string b"] } So…
7
votes
4 answers

Getting content from service bus in logic apps

I am new to Azure logic apps. I have a service bus and pass a json object message to that service bus then I set up an action in logic apps to listen to my service bus. So everytime a new message come in to that service bus my logic apps will pick…
Ramppy Dumppy
  • 2,667
  • 7
  • 27
  • 37
7
votes
1 answer

Difference between azure api-apps,logic-apps,web-apps and azure functions

What is the difference between azure API-apps,logic-apps,web-apps and azure functions? And what difference does it make for developer?
7
votes
2 answers

String concatenation issue with Azure Logic Apps

I'm creating an ARM template that deploys an Web App (an Mvc Api) and a Logic App. I'm attempting to define an HTTP Action within the Logic App such that it dynamically concatenates the base Uri of the Api as well as a property of the current item…
Paul
  • 1,590
  • 5
  • 20
  • 41
7
votes
0 answers

Azure Logic App: passing JWT token

I'm looking to have an async workflow, which looks like this: Azure API App sends message to Azure ServiceBus Topic receive message on Azure LogicApp ServiceBus connector call into different Azure API App endpoint Optimally, I want to flow a JWT…
7
votes
3 answers

Parsing JSON in Azure Logic App

I have a HTTP listener that I am sending a JSON post body with. { "recipient":"bob@example.com", "subject":"this is a test subject", "body":"this is a test body email" } I am trying to pull those individual parameters out in the next flow, but it…
Michael B
  • 11,887
  • 6
  • 38
  • 74
6
votes
1 answer

How to whitelist Logic App outbound ip's?

I got a solution using lots of logic apps and connectors (ftp/sftp) to different partners. My problem is the whitelisting of outbound logic app ip's. I know there is a list of outbound ips but most of the partners will only open up for a handful of…
user1005448
  • 617
  • 3
  • 12
  • 22
6
votes
2 answers

How to create Api connection to Azure KeyVault for Logic App with Managed Identity

Scenario Hi, I would like to create Logic App that gets secret from Azure KeyVault and sends authenticated request to the API with secret from vault. Problem I receive: The workflow connection parameter 'keyvault' is not valid. The API connection…