azure-logic-apps

Is there a way to create a new blob as a folder using logic apps?

霸气de小男生 提交于 2020-01-03 17:29:07
问题 I've set up a logic app to move my new files on my FTP server to my azure storage container, which has blobs for my files. I found a way to create new folders using the storage explorer, but is there a way I can automate this using logic apps? For example, if a new folder is created in my FTP and files are added to it, I want to create a blob folder and move those files into that blob. 回答1: First of all, Azure blob storage doesn't support folders . There is only your storage account and a

Deploying a logic app using ARM templates/powershell

送分小仙女□ 提交于 2019-12-30 11:18:10
问题 How can I Deploy a logic app that calls a SQL DB stored procedure? I've tried the following action. "actions": { "Execute_stored_procedure": { "conditions": [ ], "inputs": { "body": null, "host": { "api": { "runtimeUrl": "https://logic-apis-northcentralus.azure-apim.net/apim/sql" }, "connection": { "name": "<sql connection string>" } }, "method": "post", "path": "/datasets/default/procedures/@{encodeURIComponent(encodeURIComponent(string('<stored-procedure-name>')))}" }, "type":

How do I receive a Twilio SMS into a Logic App?

限于喜欢 提交于 2019-12-25 10:21:10
问题 How do I create a Logic App to receive an SMS? I made some progress in my question here I have been studying the information I found here and have configured the Twilio Webhook to Call the Http endpoint when a message comes in. following instructions similar to this I copied the Request Body JSON from the instructions. If I the Add A Twilo -Get Message Action it asks for the Unique SID of the message. I can't know this at Logic App Design Time, so how do I get it? 回答1: Instead letting Logic

Logic Apps : How to get the display_value response from Http API cal

試著忘記壹切 提交于 2019-12-25 03:11:39
问题 In Azure Logic app, the response I am getting while I am making an Http response call is below. { "import_set": "", "staging_table": "", "result": [ { "transform_map": "", "table": "incident", "display_name": "", "display_value": "INC5164816461631654", "record_link": "", "status": "", "sys_id": "" } ] } How I can get the 'display_name' property. I tried several ways like @triggers().outputs.body.result.display_name @{body('HTTP')['result'][display_name]} but it's not working. Result:

Pull data fro API using Azure Logic Apps

 ̄綄美尐妖づ 提交于 2019-12-25 01:24:01
问题 I need to Pull data from a 3rd party API and minor process that data and then send it to DB. Is there any connector to pull API data using Logic App? Any connector or Action? How to start. 回答1: It seems you wants to fetch data from any API using logic App right? Yes you can do it using Logic Apps Custom Connector on azure portal see the screen shot below: How to connect any API with Custom Connector: Step 1: Create New Custom Connector To create a Custom Connector go to azure portal and in

How to read the file content and parse the CSV file from BLOB in Azure?

99封情书 提交于 2019-12-25 00:56:54
问题 I have stored the csv file in blob container and try to read the content from logic app in azure. But i am facing issue to get the contect and iterate the same. Please help with flow. 回答1: You could combine the logic app with Azure Function to implement it. Blob connector to get the file . Pass CSV content to function and return JSON Iterate the row values. And about the Azure Function you could refer to this blog, in this example it has a complete Logic flow to convert csv into Json. Hope

How to convert CSV to JSON using template via Azure Logic App

北城余情 提交于 2019-12-25 00:52:35
问题 Is it possible to convert CSV to JSON using built-in/managed/3rd party template, without using Azure Function via Azure Logic App? Below is using Azure Function, which is generated automaticately. However, I cannot find the link like what it mentions. Ideally, no Azure function is required. http://blogs.recneps.org/post/Processing-a-flat-file-with-Azure-Logic-Apps https://social.msdn.microsoft.com/Forums/en-US/e0ea1adc-1979-44df-a4d1-52290338bc78/transform-csv-in-logic-app?forum

Scalable in-order message processing on Azure serverless

谁都会走 提交于 2019-12-24 20:02:46
问题 I need to create something on Azure that can process incoming streams of messages for a set of entities. We will have anywhere between 20 and 2,000 entities at any point in time; these get created and discarded dynamically. Messages will be generated using our on-premises system, and sent to Azure using some queueing mechanism. Each message will be associated with a specific entity through an EntityId property. Messages belonging to the same entity must be processed in-order with respect to

ARM templates for API Connections in Logic Apps

两盒软妹~` 提交于 2019-12-24 19:35:07
问题 Can anyone point me to ARM templates to build API Connections for use in Logic Apps? Specifically after gmail, o365, and az table storage. Targeting for use in Azure DevOps pipeline. 回答1: If you want to create API connection for table storage you could refer to this SO thread. For gmail and o365 we could create the API connection firstly from Azure Portal then we could get the corrosponding ARM template. { "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate

Microsoft Flow Custom Connector webhook trigger definition and implementation : 404 not found after flow creation

半腔热情 提交于 2019-12-24 08:29:09
问题 I'm trying to create a custom connector for my API in Microsoft Flow so users can trigger flows based on a webhook implementation. The authentication part seems to be working properly (I'm able to create connections). After creating a flow using my custom trigger, it never gets triggered. When checking the data on my end it seems that Flow was never able to register the subscription properly . If I navigate to the management page for the flow, I get the following error message. When I click