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

Logic Apps - Http+Swagger - Header attribute for token based authentication

I am trying to add headers to a Http+Swagger action in Logic App. When I add a simple Http Action, I can clearly see the Headers in the designer. However, with Swagger+Http action it disappears. I am using token based authentication and need to add…
Richard
  • 381
  • 2
  • 4
  • 22
5
votes
4 answers

Replace new line in string

I have a Logic App that is being triggered when there is a Security Alert in Security Center. I have a step where I map a subset of the inputs into a JSON document and use that to create a file. I need the JSON document that I'm creating to all be…
Andy T
  • 10,223
  • 5
  • 53
  • 95
5
votes
3 answers

Consume AWS SQS and publish to Azure Service Bus

I need a piece of "cloud glue" to read messages from an AWS SQS queue and push the results into an Azure Service Bus. I like Azure Logic Apps but they do not have an SQS connector. I could hand roll the code in an Azure functions, but are there any…
alastairtree
  • 3,960
  • 32
  • 49
5
votes
2 answers

Create LogicApp and API Connections ARM Template using DotNet SDK

I have created Azure Logic App using Dot.Net SDK. Logic App created successfully but for Trigger and Action i want to use existing Connector. I have manually created connector to Azur Portal. I am passing that Connector's APIConnection or Id to…
5
votes
5 answers

How to escape singlequote(') in azure logic app expression replace function

In Azure logic Apps, how can I escape single quotes(') using a replace function? I have a JSON payload where I have to replace a single quote(') with a double quote("). The expression I've came up with looks like…
ashok
  • 1,078
  • 3
  • 20
  • 63
5
votes
3 answers

Azure Logic App - simple condition to check for empty string variable fails

Solved Issue was due to error in child action as Thomas pointed out, not the way I was checking the variable value. I've got a variable that's been initialized earlier in the LA. Later on I'm trying to check if the variable is empty using a…
Joe Eng
  • 1,072
  • 2
  • 15
  • 30
5
votes
2 answers

For_each concurrency and variable interference in Azure Logic App

I have a logic app that uses For_each to iterate through email attachments and saves them to an Azure Files container. Depending on some conditions, I want the attachment stored with a different name or at a different path, but the default…
spongessuck
  • 1,023
  • 8
  • 23
5
votes
2 answers

Is there any Code View for Microsoft Flow Apps?

We can go in code view mode in Microsoft Azure Logic Apps. Is there anything same like for Microsoft flow as well?
Ravi Anand
  • 5,106
  • 9
  • 47
  • 77
5
votes
0 answers

Get user profile (V2) in Microsoft Flow - How to use select query

In Microsoft Flow, I'm trying to retrieve a custom field in a user profile. I'm using the "Get user profile (V2)" operation and I want to specify the custom field in the Query field. No matter how I construct the Query the operation returns this…
5
votes
3 answers

Azure pre-compiled Functions not available to Logic Apps

We are utilising visual studio 2017 and azure precompiled functions in VB.NET. All functions run successfully locally using the func.exe CLI tool. We can publish the Function App to Azure where we can see and test within the portal. The problem…
Dooie
  • 1,649
  • 7
  • 30
  • 47
5
votes
1 answer

Logic apps logs in application insights

Can I send traces(input/ output) of all actions/steps executed in my logic app to any application insight? Is there an out of box provision for the same?
Purbasha
  • 215
  • 2
  • 11
5
votes
1 answer

How do I create csv file from "SQL get rows" connector in Azure logic apps?

I have created recurrence then I have connected sql server and getting rows from table . I want to export csv file from sql rows and send email
Nagarajan.M
  • 93
  • 1
  • 3
  • 10
5
votes
5 answers

Azure Logic Apps - Get Blob Content - Setting Content type

The Azure Logic Apps action "Get Blob Content" doesn't allow us to set the return content-type. By default, it returns the blob as binary (octet-stream), which is useless in most cases. In general it would be useful to have text (e.g. json, xml,…
5
votes
1 answer

ETL/ Data Warehousing Approach using APIs

I have about 20 different data sources, all small applications which have APIs (some soap and some rest). I need to combine all this data, transform it and store data into a data warehouse. I am considering Azure SQL database. However, I am not sure…
a415
  • 359
  • 1
  • 6
  • 23
5
votes
3 answers

How to Process XML in Azure Logic App

I'll start with the behavior we are looking to have: Take in a file (be it JSON or XML, but right now we would prefer XML although we have control over this), Parse it to find the "type" of the file Transform the file to match one of a few…
Sven Grosen
  • 5,616
  • 3
  • 30
  • 52