azure-logic-apps

How to deploy Logic App with o365 Connector within ARM template

落爺英雄遲暮 提交于 2021-02-20 18:50:19
问题 Im trying to deploy an ARM template with a logic app and an (unauthenticated) o365 connection. This is my template: { "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { "type": "string", "defaultValue": "[resourceGroup().location]", "metadata": { "description": "Location for all resources." } } }, "variables": { "LogicAppName": "MyLogicApp" }, "resources": [ { "type": "Microsoft.Logic

Logic Apps - Iterate through Blobs on Azure storage

99封情书 提交于 2021-02-11 15:37:54
问题 I have an Azure storage account with Input and Archive directories. I want to: Check for new XML files in the Import folder. Read the contents of any files and validate the data. Rename the XML file and move it to the Archive folder. I don't want to have to set up a Gateway as I would need to check it was secure. Therefore, I have set up a recurrence trigger to poll the directory. This is my logic app so far. This is the output I get. Here is the error message in full. ```{ "status": 400,

How to get the details of all the resoures from their resource groups

泄露秘密 提交于 2021-02-11 15:37:51
问题 I am trying to set up an azure logic-app with an azure function that will get all(most) of details of all the resources in a subscription. including their subscription ID, Resource Guid and the resource group they reside 回答1: What you basically need is to make use of the Azure Resource Management API's to operate on your resources. For your requirement you can make use of the below. GET https://management.azure.com/subscriptions/{subscriptionId}/resources?api-version=2019-05-10 Remember you

Logic Apps - Iterate through Blobs on Azure storage

我与影子孤独终老i 提交于 2021-02-11 15:36:10
问题 I have an Azure storage account with Input and Archive directories. I want to: Check for new XML files in the Import folder. Read the contents of any files and validate the data. Rename the XML file and move it to the Archive folder. I don't want to have to set up a Gateway as I would need to check it was secure. Therefore, I have set up a recurrence trigger to poll the directory. This is my logic app so far. This is the output I get. Here is the error message in full. ```{ "status": 400,

Logic Apps - Iterate through Blobs on Azure storage

坚强是说给别人听的谎言 提交于 2021-02-11 15:34:57
问题 I have an Azure storage account with Input and Archive directories. I want to: Check for new XML files in the Import folder. Read the contents of any files and validate the data. Rename the XML file and move it to the Archive folder. I don't want to have to set up a Gateway as I would need to check it was secure. Therefore, I have set up a recurrence trigger to poll the directory. This is my logic app so far. This is the output I get. Here is the error message in full. ```{ "status": 400,

How to get the details of all the resoures from their resource groups

和自甴很熟 提交于 2021-02-11 15:34:24
问题 I am trying to set up an azure logic-app with an azure function that will get all(most) of details of all the resources in a subscription. including their subscription ID, Resource Guid and the resource group they reside 回答1: What you basically need is to make use of the Azure Resource Management API's to operate on your resources. For your requirement you can make use of the below. GET https://management.azure.com/subscriptions/{subscriptionId}/resources?api-version=2019-05-10 Remember you

How to get the details of all the resoures from their resource groups

a 夏天 提交于 2021-02-11 15:34:14
问题 I am trying to set up an azure logic-app with an azure function that will get all(most) of details of all the resources in a subscription. including their subscription ID, Resource Guid and the resource group they reside 回答1: What you basically need is to make use of the Azure Resource Management API's to operate on your resources. For your requirement you can make use of the below. GET https://management.azure.com/subscriptions/{subscriptionId}/resources?api-version=2019-05-10 Remember you

How to store email attach csv file content as variable in azure logic app

风格不统一 提交于 2021-02-11 14:54:30
问题 I get a csv file as email attachment.I need a way to read email attachment and save that attachment as variable or directly read the attach file content and get data or store in blob storage.( If csv file save in blob , how we can read it. ) note - This csv file has data about system processes.I want to get only yes process from the attach csv file and continue the integration. ex- onboarding process | yes billing process | no 回答1: For your requirement about " If csv file save in blob , how

Filter Query (OData) in Logic App

有些话、适合烂在心里 提交于 2021-02-11 06:13:27
问题 I am trying to create a simple logic app to send email if the a field is true. The flow is: Get Items From SPO (1) > Filter Array (2) > Send Email (3) (1): This step, I want to have a quick filter to limit records returned from SharePoint Online: "queries": { "$filter": "preproccessed eq true" } (2)(3): another filter applied, then send email The (2) & (3) run just fines, but the (1) doesn't work at all, all records returned regardless of the filter. I even tried this: "queries": { "$filter":

Filter Query (OData) in Logic App

笑着哭i 提交于 2021-02-11 06:13:07
问题 I am trying to create a simple logic app to send email if the a field is true. The flow is: Get Items From SPO (1) > Filter Array (2) > Send Email (3) (1): This step, I want to have a quick filter to limit records returned from SharePoint Online: "queries": { "$filter": "preproccessed eq true" } (2)(3): another filter applied, then send email The (2) & (3) run just fines, but the (1) doesn't work at all, all records returned regardless of the filter. I even tried this: "queries": { "$filter":