Logic Apps: How to save file from email onto sharepoint
In the below workflow, when an email arrives I want it to save the contents into a SharePoint folder. The workflow is successful, however the file ibecomes broken/does not work because attachments content is a giant hash. There is nothing wrong with the file.
Logic Apps – Remove Diacritics in a String
Is there a built-in action in Azure Logic Apps that removes diacritics in a string and changes it to a standard letter? For example, if you have the string áóç
, it becomes aoc
.
Is there a way to search previous runs within a logicapp, as part of the logicapp?
I am trying to solve a problem where data we receive may be duplicated. We do not have a search API available to search the database, so I wondered if there is a way to use the logicapp to search previous runs for that app and send an error message if they find that a field is duplicated (it will only be one field from the dataset).
How to validate logicapp output? which arrived 2 rows through for each loop Inner – ‘Rows’ and outer items(‘rows’)
I have created an logic app, and got output json result {
“name”: “endData”,
“value”: “[ {“startdate” : “01/01/2014″,”enddate” : “31/01/2014″,”startdate” : “01/02/2014″,”enddate” : “28/02/2014″} ]”
} and need to validate my output json since not correct it seems
Azure GOVT Start/Stop Solution v2 Subscription 404
I get the following error when in MAG for logic app create for start/stop. The subscription is valid and has azure resources. I am running the logic app when logged in as an Owner. The same setup in Azure commerical works fine for me.
Logic apps – how to read 2 rows through an index variable
json input – { "tables": [ { "name": "primaryresult", "columns": [ { "name": "startdate", "type": "string" }, { "name": "enddate", "type": "string" } ], "rows": [ [ "01/01/2014", "31/01/2014" ], [ "01/02/2014", "28/02/2014" ] ] } ] }
Logic App SFTP private key authentication doesn’t work
I’m trying to create a Logic App that uploads files to a SFTP. When I create a new connection, I get Permission denied (publickey)
error.
How to trigger Azure Logic App when a file is not being uploaded in Blob Storage? When you have replacing previous file?
I have one blob storage , in that am updating every 15 min new files .
Now i have to configre the mail notification when new file is uploaded or not .
Azure Logic App: Gmail action with C# / Javascript code to read gmail email and make an external API call
I’m trying to read the email content on gmail trigger on Azure Logic app and using that trying to make an external API call.
Reading values bassed on environment standard logic apps
I am trying to read variable values based on environment in workflow.json. I have a value configured in App settings of standard logic app which is env and this variable will have a value dev, stag or prod based on environments. I need to read the below variable values based on environments and right now I am using @{variables('_Uri')[@appsettings('env')]['G1']}
to do that. For some reason, this is not working. I am new to logic apps and trying to learn, would need help with this. Thank you!