azure-logic-apps

Logic App to push data from Cosmosdb into CRM and perform an update

China☆狼群 提交于 2020-08-26 09:43:19
问题 I have created a logic app with the goal of pulling data from a container within cosmosdb (with a query), looping over the results and then pushing this data into CRM (or Common Data Service). When the data is pushed to CRM, an ID will be generated. I wish to then update cosmosdb with this new ID. Here is what I have so far: This next step is querying for the data within our cosmosdb database and selecting all IDS with a length that is greater than 15. (This tells us that the ID is not yet

How to do a 'null' check in 'if' condition action of Azure Logic App

大憨熊 提交于 2020-08-24 05:46:11
问题 I've created a logic app which contains some trigger, an 'http' connector and then an 'If' condition activity. The 'http' connector returns a 'json' result say jsonObj . I'm able to check condition as @equal(body('HTTP')['jsonObj'].someProperty,'someValue') but not able to do a null check on that someProperty value. Below are some ways I tried which are not working. @equal(body('HTTP')['jsonObj'].someProperty, null) --Unable to save @equal(body('HTTP')['jsonObj']?.someProperty,'null') -

How to do a 'null' check in 'if' condition action of Azure Logic App

我们两清 提交于 2020-08-24 05:43:11
问题 I've created a logic app which contains some trigger, an 'http' connector and then an 'If' condition activity. The 'http' connector returns a 'json' result say jsonObj . I'm able to check condition as @equal(body('HTTP')['jsonObj'].someProperty,'someValue') but not able to do a null check on that someProperty value. Below are some ways I tried which are not working. @equal(body('HTTP')['jsonObj'].someProperty, null) --Unable to save @equal(body('HTTP')['jsonObj']?.someProperty,'null') -

connectors to applications 'azureeventgrid' is not compatible with the Gmail

醉酒当歌 提交于 2020-07-23 06:48:11
问题 As part of microsoft integration service. I'm using an azure logic app that should send message to my GMAIL address each time an event is happening in a VM under a specified resource group. Scenario applied is : create RG + VM create blank logic app add event grid trigger add condition ...... send email notificiations (as of the link : article ) But Logic app designer denied to save as I receive the following message : Failed to save logic app XXXXla01. The operation on workflow 'XXXXla01'

connectors to applications 'azureeventgrid' is not compatible with the Gmail

对着背影说爱祢 提交于 2020-07-23 06:46:23
问题 As part of microsoft integration service. I'm using an azure logic app that should send message to my GMAIL address each time an event is happening in a VM under a specified resource group. Scenario applied is : create RG + VM create blank logic app add event grid trigger add condition ...... send email notificiations (as of the link : article ) But Logic app designer denied to save as I receive the following message : Failed to save logic app XXXXla01. The operation on workflow 'XXXXla01'

Azure file system connector

房东的猫 提交于 2020-06-29 03:56:31
问题 I have create many logic apps and used Azure file system for creating and copy file in Azure in VS 2019. Now the problem is that in one App when i add azure file system as connector as SO here I see I have 2 connector where as in other app I see there are almost 6-7 connectors so in the second screen shot i see many connection in different app and I am using the same connection (INT ---azurefile-3) now I want to use this in a different app where I am using azure file system and I am not

Graph Pagination in Logic Apps

ぐ巨炮叔叔 提交于 2020-06-17 09:56:05
问题 I'm trying to fetch all users from a specific group via an HTTP connector, a registered app, and Microsoft Graph. The registered app has Directory.Read.All permissions. My idea is that I'm calling the nextLink as long as it's there while appending all of the fetched users' userPrincipalName to an array eventually filling the array with all users of the group. My Logic App looks like this: Unfortunately, I'm just 1 reputation short of posting images, please forgive. The 3 links should provide

Azure Logic Apps: Extract HTTP Header Key value into a variable

纵然是瞬间 提交于 2020-05-29 11:00:10
问题 I am new to Logic Apps. My logic app receives a POST call that has key values in the HTTP header that I want to extract into variables for processing later in my workflow. The Set Variable action seems to only be able to access the trigger body. I tried the following to access the headers via an expression, but cannot receive the value. "Set_variable_2": { "inputs": { "name": "vsTopicName", "value": "@{triggerOutputs()?['headers']?['CEI-EventType']}" }, Is is not possible in Logic Apps to

Converting XML files to JSON or CSV?

纵然是瞬间 提交于 2020-05-28 04:28:32
问题 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 logic apps is one option. Has anyone had other luck with taking XML and converting within a pipeline? Current Workflow: pick up XML files from folder, drop to on network drives, bulk insert XML into a staging row, parse XML to various SQL tables for

Converting XML files to JSON or CSV?

孤街醉人 提交于 2020-05-28 04:28:05
问题 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 logic apps is one option. Has anyone had other luck with taking XML and converting within a pipeline? Current Workflow: pick up XML files from folder, drop to on network drives, bulk insert XML into a staging row, parse XML to various SQL tables for