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

Logic Apps - Iterate over JSON output from HTTP call

We are using Azure Logic apps HTTP connector to call a REST service based on the output returned from another REST service in the previous step. The first service is returning a JSON array output as below. The requirement is to loop over the JSON…
4
votes
0 answers

Azure Logic App FTP Copy File gives BadGateway

I have a Logic App that triggers when a Blob is added or modified. The next action is to Copy file to FTP. This only works when we edit the FTP connection and delete the port. When this runs manually it works fine. After a few minutes, the API…
shanabus
  • 12,989
  • 6
  • 52
  • 78
4
votes
1 answer

Logic Apps - order of JSON objects in action "Data operations - Select"?

When transforming JSON data using "Data operations - Select" the JSON object order is always alphabetical. Example: {"Area": "12", "Cargo": "Yes", "Logistics": "No"} Does any of you know if there is a way to set another order of the JSON objects? I…
TobiasJ
  • 111
  • 1
  • 7
4
votes
1 answer

logic apps - cannot be evaluated because property doesn't exist

In Logic Apps, I have an expression: coalesce(triggerbody().data.job_id,triggerbody().resource_id,'error') I basically want to get the first one that is not null, however one of these does not EXIST in the json payload. I get an error: 'The…
4
votes
1 answer

Logic Apps - foreach loop very slow

I've noticed that looping (using foreach) in Azure Logic Apps is very slow. As an example I've looped over a http result containing 8.000 JSON nodes (altogether 1.6MB data) and it took around 6 minutes to process which is an extremely long time…
TobiasJ
  • 111
  • 1
  • 7
4
votes
3 answers

How can I allow an Azure Logic app access to a secured blob storage account

I have an Azure Storage account where I have blobs stored in containers. I would like to limit the access to this storage account to specific Azure resources and prevent internet connections. I currently have access limited to IPs from our office…
aaronR
  • 1,557
  • 2
  • 16
  • 26
4
votes
1 answer

Is there a way to create a new blob as a folder using logic apps?

I've set up a logic app to move my new files on my FTP server to my azure storage container, which has blobs for my files. I found a way to create new folders using the storage explorer, but is there a way I can automate this using logic apps? For…
4
votes
2 answers

Sending message to azure service bus as a string using azure logic app

I am sending a message to a service bus topic using the logic app action "Send Message". When reading it in a console application, if i do this: SubscriptionClient subClient = SubscriptionClient.CreateFromConnectionString(connstr, topicName,…
4
votes
1 answer

Update json in logic apps

I want to parse through a json and update specific nodes in json result according to the following code snippet written in power shell: foreach($val in $getresult.elements.values) { if($val.Name -eq "Config") …
4
votes
1 answer

Does anyone know how to use the Azure Table Storage - Insert Entity (Preview) Action of Logic Apps

I'm trying to do a simple workflow in Logic Apps using the Dynamics 365 for Operations - Get Records (preview) Action and then store the results in the action Azure Table Storage - Insert Entity. By doing a hack I'm able to store the results in JSON…
Julio Luzardo
  • 151
  • 2
  • 8
4
votes
5 answers

Azure Logic App: how to make a x-www-form-encoded?

I'm trying to make a request with Content-Type x-www-form-urlencoded that works perfectly in postman but does not work in Azure Logic App I receive a Bad Request response for missing parameters, like I'd not send enything. I'm using the Http…
Paulo Henrique
  • 83
  • 2
  • 10
4
votes
1 answer

How to remove Azure On-Premises Data Gateway connection gateway installations?

the Azure On-Premises Data Gateway got installed with the wrong Azure region settings on a Virtual Machine in Azure. After uninstalling the on-premises Data Gateway, the original connection gateway installation is not removed and a new one with the…
Jeroen T.
  • 141
  • 2
  • 9
4
votes
2 answers

Convert SQL Stored procedure ResultSet table JSON to XML

This looks pretty obvious but somehow its not working for me. I am trying to build a solution in Logic App on Microsoft Azure but I am stuck to convert JSON object to XML. My requirement is to execute a Stored Procedure and save the response in XML…
pgcan
  • 1,199
  • 14
  • 24
4
votes
2 answers

"Could not establish trust relationship for the SSL/TLS secure channel" when calling Api Management from Azure Logic App

I have an Azure Logic App where I have added, through the Designer, an action to call an Azure Api Management (APIM) operation. As said, I used the Logic App Designer which guided me through the process of selecting the APIM operation. Now, when the…
4
votes
2 answers

"Azure Queues" trigger for Logic App - no help or docs on settings

I added an "Azure Queues" trigger and I get these three fields: Connection Name Storage Account Name Shared Storage Key But no explanation. Is there documentation for this trigger? I see that it is a "preview".
Chris Harrington
  • 1,238
  • 2
  • 15
  • 28