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

Get values from an Array into a variable [Azure Logic App]

I have an array variable "Names" with this values for example ["Unity","Block","PRD","Monit"] and want to get each of them value into a new variable. The output desired would be something like: Variable Group = Unity Variabel Test = Block (...) As…
JCMonit
  • 43
  • 1
  • 1
  • 3
4
votes
1 answer

How to avoid to add duplicate string in append string connector logic app

I have following json array input - "results": [ { "tableName" : "ABC","id":"11"}, { "tableName" : "ZX","id":"11"}, { "tableName" : "ABC","id":"11"} ]} In logic app i have used `` in For_each I'm able to append string successfuly but how to…
Neo
  • 15,491
  • 59
  • 215
  • 405
4
votes
1 answer

Multiple Logic Apps in same Azure Resource Group Project

I have a requirement to create around 20 small logic apps. I want all of them to be part of single solution ideally single Azure Resource Group project. Once it is created, I want to set up CI/CD on Azure Devops to deploy all these logic apps to…
PNDev
  • 590
  • 1
  • 8
  • 23
4
votes
2 answers

How do I find the supported parameterValues for a general Azure API connection?

I'm having a problem similar to this one. I'm attempting to deploy an API connection via an ARM template, and I'm getting 'ParameterNotDefined' errors when I deploy. However, instead of creating an API connection to an azure table, I'm connecting…
Brad
  • 163
  • 1
  • 9
4
votes
1 answer

Create a document in Cosmos DB via Logic App and PartitionKey mismatch in document & header

So I'm trying to create an Azure Logic App which will create a new record inside a Cosmos DB collection to store review results. I've created a Cosmos DB database (called icecream) + collection (called reviews). The PartitionKey of the reviews…
Jan_V
  • 4,244
  • 1
  • 40
  • 64
4
votes
0 answers

How to create a Logic App Custom Connector polling trigger?

I've been able to create a Logic App Custom Connector with a webhook trigger by following the docs, however I can't find any documentation on creating a polling trigger. I was only able to find Jeff Hollan's trigger examples, but the polling trigger…
Sander Schutten
  • 1,862
  • 1
  • 10
  • 10
4
votes
1 answer

Microsoft Flow: String to GUID conversion for SQL destination

I have a Microsoft Flow which i want to insert a record into a Azure SQL table, I am having trouble inserting a GUID which is generated from the trigger. The field I am mapping from appears to be a GUID format when i inspect it however when the…
AJ_
  • 93
  • 7
4
votes
3 answers

Stop Logic App execution within foreach when there's an error

I am building a Logic App that contains a foreach loop in a synchronous style (constrained to one execution at a time, concurrency=1). Within each foreach loop, there is a switch statement that calls different child Logic Apps depending on the…
M Rogers
  • 103
  • 1
  • 7
4
votes
3 answers

Azure Function 404 Error when running in Logic App

I have built a simple function in Azure that takes in the location of a file from the json body, and reads the first line to get the headers from said file. I am building the function in Visual Studio and publishing it using a packaged deployment.…
Nirmie
  • 65
  • 1
  • 4
4
votes
1 answer

The gateway did not receive a response from 'Microsoft.Web' within the specified time period while creating FTP in Azure

I have an Azure logic app, inside that i am creating FTP (when file is added or modified) but after creation of FTP connection, i am unable to see the folder name inside the folder box with the error "The gateway did not receive a response from…
Sudhanshu Pal
  • 86
  • 1
  • 2
  • 13
4
votes
4 answers

How to send html email through Azure Logic App and Outlook

I am using Azure Logic App to send Email via Outlook. However, I could not use the [Send an Outlook Email] Action in HTML format. The mail sent is in plain-text format. How could I sent the HTML email with Azure Logic App and Send an Outlook Email…
Winnie Chen
  • 65
  • 1
  • 4
4
votes
2 answers

Assigning Microsoft Graph permissions to Azure Managed Service Identity

I'm trying to assign permissions to an Azure Managed Service Identity for my Azure Logic App, but am running into errors. I'm using the 2.0.1.16 version of the AzureAD powershell module. What I have done is the following: Create a logic…
Mark Priem
  • 367
  • 2
  • 4
  • 16
4
votes
2 answers

Save the Response from HTTP to Blob Storage using Azure Logic App

Is it possible to save the response from the HTTP request(First Step) into the Blob Storage(Second Step) while using Azure Logic App. Thank you.
4
votes
1 answer

How to debug a code on Logic-Apps?

I'm using Logic-Apps for my project now. I think it's good and easy! However, It was difficult to debug during the coding of the logic. Because I couldn't to confirm the variables or status at a middle point of the code. Usually a developer can…
Ichiro
  • 103
  • 1
  • 8
4
votes
0 answers

Azure Logic Apps- maximum buffer size

I am using a HTTP connector to download a file using the get Request. Have set Allow chunking to On but still getting the error "Http request failed as there is an error: 'Cannot write more bytes to the buffer than the configured maximum buffer…