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
6
votes
2 answers

How to read a CSV file line by line in Azure Logic App?

I have an Azure Logic app which picks a file from the Sharepoint site. In the next step, I want to parse the file contents to read them line-by-line and to pass each line in an Azure function I have already created. At this stage I am unable to…
Nirman
  • 6,715
  • 19
  • 72
  • 139
5
votes
1 answer

Azure Logic App not able create client certificate authentication with converted base64 encoded pfx

I want to get the token information for ADP Client through Azure Logic App. I have the Client Certificate from ADP so I decided to use HTTP trigger from Logic App and selected authentication type "Client Certificate". Since I cant directly use…
5
votes
1 answer

Azure logic app use a variable inside inline_code action

I have a logic app that looks something like this: In the js code action, I just wanted to check if the name of the file (that had triggered the workflow) match some pattern. So my Inline code action has something like: var input =…
ibda
  • 376
  • 3
  • 15
5
votes
5 answers

Azure Logic App: Checking whether property exists in a json object

I have a JSON coming from an 'SQLServer GetRecords (V2)' action like the following. Unfortunately, the response will not contain fields with null values. In my example, the 'Name' field is null for some items. [ { "@odata.etag": "", …
shams.kool
  • 343
  • 1
  • 2
  • 12
5
votes
2 answers

Event Grid Topic Vs Event Grid System Topic

What's the difference between Event Grid Topic and Event Grid System Topic. When I select resource type "Event Grid Custom Topic" then Event Grid Topic type is getting created. but when I use Service Bus Premium->Event Registration . The Event…
5
votes
1 answer

Create Azure AD integrated SQL Server connection in an ARM template

It looks like we are now able to authenticate with Azure AD with a SQL Server connector in a Logic App, which is great! Here is a screenshot of the new connector dropdown. My problem is when I go to change the name of this connector via an ARM…
Redbeard
  • 273
  • 2
  • 7
5
votes
1 answer

Unable to run Logic App on App configuration event

I want to implement LogicApp, to trigger build every time, when someone changes key-value pairs in App Configuration. In order to do this, I've created a Logic app to trigger, when resource event occurs: But, when I change something in App…
Vasyl Stepulo
  • 1,493
  • 1
  • 23
  • 43
5
votes
1 answer

How long will a Logic App continue to check a HTTP 202 Accepted response?

How long will a Logic App continue to check a HTTP 202 Accepted response? With the "Asynchronous Pattern" setting enabled, calling an endpoint that continues to return a HTTP 202 with a valid "location" header Will the logic app just carry on for…
SteveC
  • 15,808
  • 23
  • 102
  • 173
5
votes
1 answer

Converting XML files to JSON or CSV?

I have complex XML files with nested elements. I built a process to handle using SSIS and T-SQL. We utilize Azure Data Factory and I'd like to explore converting XML files to JSON or CSV, since those are supported by ADF and XML is not. It appears…
MZEN
  • 155
  • 1
  • 6
5
votes
2 answers

Azure Logic Apps - Alerts Notification for Failures

I have an Azure Logic App that runs every three days, it is requested that a notification (email/SMS) is sent when one of the steps fails in the app. I was thinking the best way to accomplish this is to query the logs as in…
Girac
  • 79
  • 1
  • 3
5
votes
2 answers

doing xml replace operations in logic apps

How do we replace strings within an XML payload in logic apps? input yes he is sdfsdfjijOIJOISJDFQPWORPJkjsdlfkjlksdf== SFSDFsdfsdgfjgjkfjsdlfkjlksdf== desired…
Alex Gordon
  • 57,446
  • 287
  • 670
  • 1,062
5
votes
2 answers

How do parse string as JSON in Logic App?

I have JSON below which I receive from external entity. As you can see requestbody parameter is appearing as string even though it's JSON. So how do I unescape it so I can correctly parse it downstream? { "emailaddress": "174181@mycomp.com", …
Gregory Suvalian
  • 3,566
  • 7
  • 37
  • 66
5
votes
3 answers

"Unauthorized" error when trying to call an AzureFunction from LogicApp

I have a logic app that executes a workflow by calling Azure Functions in a certain order. It was working fine for a few days, but recently it stopped working. In logic apps run (on Azure Portal) it looks like this: The output of the action that…
5
votes
2 answers

Logic App - Difference between Workflow/Runtime Outbound IP-addresses and Connector Outbound IP-addresses

Can someone please explain to me the difference between the new way that Azure differs between the outbound IP-addresses for the logic apps please. I think the documentation is so slimmed down in doing a proper explanation of that issue. Reading it…
H4p7ic
  • 1,669
  • 2
  • 32
  • 61
5
votes
1 answer

ARM Template deployment - The resource identificator is malformed

I am trying to deploy multiple LogicApps and other resources together from a single ARM Template. When i try to do a Test-AzureRmResourceGroupDeployment with the template that i created it throws this error Code : InvalidTemplate Message :…