azure-logic-apps

Trigger Azure Function by inserting (adding) new row into table, SQL Server Database

允我心安 提交于 2020-01-24 09:34:12
问题 Is it possible to trigger Azure Function by inserting new row into table (using SQL Server Database). Or, is it possible create Logic App to inform us, in case of new record has been added into table, SQL Server database (e.g once the new record is added to send new info email) 回答1: You can use Azure Event Grid as stated on this article "Extend existing workflows by triggering a Logic App once there is a new record in your database". You can also create a Logic App to poll the table and add

Trigger Azure Function by inserting (adding) new row into table, SQL Server Database

此生再无相见时 提交于 2020-01-24 09:34:06
问题 Is it possible to trigger Azure Function by inserting new row into table (using SQL Server Database). Or, is it possible create Logic App to inform us, in case of new record has been added into table, SQL Server database (e.g once the new record is added to send new info email) 回答1: You can use Azure Event Grid as stated on this article "Extend existing workflows by triggering a Logic App once there is a new record in your database". You can also create a Logic App to poll the table and add

How use existing connection in Logic Apps Designer

本秂侑毒 提交于 2020-01-06 15:16:29
问题 When I create a new Logic App and choose, for example, "SFTP file is added or modified" I am prompted to add the connection information. I have already created an API connection to my SFTP server. How to choose this existing connection instead of creating a new one in Designer? Or do I have to switch to Code View in order to use an existing connection? Update: I tried in code view to copy over my connections ( the "$connections" element from another Logic App) and go this error: Operation

Which action(s) can I use to create a folder in SharePoint Online via Azure Logic App?

倾然丶 夕夏残阳落幕 提交于 2020-01-06 06:43:06
问题 As question title states, I am looking for a proper action in Logic Apps to create a folder. This action will be executed several times -- once per directory as per business rule. There will be no files created in these folders because the intent of the Logic App is to prepare a template folder structure for the users' needs. In the official documentation I see that there are create file, create item, and list folder actions. They suggest that there might be an action to create a folder too

Azure Logic App: How to save HTTP Connector's body content to OneDrive file?

落爺英雄遲暮 提交于 2020-01-06 06:35:13
问题 I have a simple Azure Logic App with the following components: Recurrence HTTP Get from HTTPS url I've tried to configure the next component to save the HTTP response body to OneDrive with OneDrive Connector configured as follows: FilePath: ApiTest/test.json Content: @{body('http')} Content Transfer Encoding: None This gives the following error: {"code":"InvalidTemplate","message":"Unable to process template language expressions in action 'microsoftonedriveconnector' inputs at line '1' and

Load data from XML file to SQL database in Azure using Logic Apps

▼魔方 西西 提交于 2020-01-06 05:33:07
问题 I'm new to Azure development, and I'm having trouble finding examples of what I want to do. I have an XML file in Azure file storage and I want to use a Logic App to get that XML data into a SQL database. I guess I will need to create a "SQL Database" in Azure, before the Logic App can be written (correct?). Assuming that I have some destination SQL database, are there Logic App connectors/triggers/whatever that I can use to: 1) recognize that a file has been uploaded to Azure, and 2) process

Logic App bypass Null in filter query

假如想象 提交于 2020-01-05 22:42:34
问题 I am building a Logic App that uses the Azure Resource connector to obtain a list of my resources. I would then like to filter the results to Microsoft.Compute resources that have a tag name and value of stop and normal . Here is a snippet of resource that I receive back without any filters { "id": "/subscriptions/<subscription>/resourceGroups/Env1/providers/Microsoft.Compute/virtualMachines/MyVM1", "name": "MyVM1", "type": "Microsoft.Compute/virtualMachines", "location": "westeurope", "tags"

How can I obtain private key from Azure Blockchain Service?

倾然丶 夕夏残阳落幕 提交于 2020-01-05 05:42:08
问题 I am not sure how I can obtain private key from Azure Blockchain Service. I would like to use Etherium connector on Logic App. Without private key, the flow fails. Error message is as below; { "status": 400, "message": "No private key was found in the connection object\r\nclientRequestId: f85XXXXXXXX-XXXXXXXXXXXXXX-XXXXXXXXbfea", "source": "blockchainethereum-je.azconn-je.p.azurewebsites.net" } Please tell me where can I find out these informations, "Ethereum RPC Endpoint", "Private Key",

How to find current value of variable from logic app instance?

别说谁变了你拦得住时间么 提交于 2020-01-05 04:00:13
问题 Inside my logic app, I am initializing a variable and this variable's value can change over the course of logic app execution. While logic app is still in running mode (waiting for external event to happen) I want a way to find the current value of the variable in logic app. I can always store value of this variable in data store like SQL server or blob storage and read it from there but I don't want to use external storage. Given that logic apps are kind of stateful in a way, I am wondering

Azure Logic App - Dynamic API Connection

。_饼干妹妹 提交于 2020-01-04 13:03:22
问题 Is it possible to dynamically choose the FTP API connection that I want to use? We have defined two FTP API connections in the same resource group, with name ftptest1 and ftptest2. How can I select one of these in the code view of the Logic App? I'm only able to select the connection in the designer and then connection 'ftp' is created. See code snippet below. But I need to dynamically select one of the two FTP connections based on a parameter. "inputs": { "body": "@body('XMLFile')", "host":