Questions tagged [power-automate]

Microsoft Power Automate (formerly Microsoft Flow) is a business workflow automation tool. Use this tag for questions about issues or questions regarding building/designing Power Automate workflows, configuring them to work with additional applications in the MS Power suite, or with other MS products like Office or SharePoint. DO NOT use this tag for questions about license issues with Power Automate

Microsoft Power Automate (formerly Microsoft Flow) is a business workflow tool for automating workflow processes in an online environment. It connects with other Microsoft Power apps, Microsoft Office products, SharePoint, external services such as Twitter, Facebook, and on-premises environments to communicate with applications like SQL or Excel.

Links

2180 questions
5
votes
1 answer

Flow cannot use a Child Flow because of them being in a different Subscription despite being in same Solution

When I'm saving a Flow which needs to call a child-flow, I'm getting an error to indicate that this flow is in a different subscription. The error message suggests that I need to move the subscription, however, there is no way to do that within…
Matty Bear
  • 517
  • 1
  • 4
  • 16
5
votes
1 answer

Microsoft flow adaptive card to mention teams user in teams

I'm creating a Microsoft flow to mention a user within an Adaptive card posted by the Flow bot within teams. This is the action I'm trying to use This is a simplified version of my JSON to do this { "type": "AdaptiveCard", "body": [ { …
Java Devil
  • 10,629
  • 7
  • 33
  • 48
5
votes
1 answer

Running Python triggered from Microsoft Flow

Would anyone know what is the approach to call Python application/script (which relies on imported libraries like pandas) from Microsoft Flow? The complete problem is like this. Client uploads something to Dropbox (it is how his ERP works). This…
eXPRESS
  • 425
  • 2
  • 4
  • 19
5
votes
1 answer

Microsoft Flow Add Outlook attachment to VSTS Work Item

I'm trying to get an Outlook attachment uploaded to VSTS (using the Send an HTTP request to VSTS action). I have everything else working. Including added the attachment to the ticket, but the "uploaded" file is nothing. I've tried every combination…
5
votes
2 answers

Is there any Code View for Microsoft Flow Apps?

We can go in code view mode in Microsoft Azure Logic Apps. Is there anything same like for Microsoft flow as well?
Ravi Anand
  • 5,106
  • 9
  • 47
  • 77
5
votes
0 answers

Get user profile (V2) in Microsoft Flow - How to use select query

In Microsoft Flow, I'm trying to retrieve a custom field in a user profile. I'm using the "Get user profile (V2)" operation and I want to specify the custom field in the Query field. No matter how I construct the Query the operation returns this…
4
votes
0 answers

Powerapps : Pass a json Array to a Flow

Context I'm currently working on a specific search engine frontend, based on Powerapps, which need to pass a string array to a service through a Power-Automate Flow, in order to specify a filter. The Flow The flow itself takes a JSON object as input…
Dremor
  • 789
  • 2
  • 8
  • 27
4
votes
1 answer

Run python scripts in Power Automate

I use Power Automate to fetch some data from SQL database and save them into different excel files. After my workflow is done, I have 8 different excel file, and I need to do some data preprocessing on them. I've got the python script which consists…
Rutkay Karabulak
  • 107
  • 1
  • 2
  • 12
4
votes
1 answer

upload files from sharepoint online to aws s3 bucket

When any file or folder created in a document library in Sharepoint online, then need to upload that file or folder to AWS S3 bucket with the help of Power Automate. Also, if any attachment upload in the Sharepoint online list, then also that…
4
votes
2 answers

oAuth2.0 with Microsoft flow(Power Automate) and then accessing protected API

I'm working on setting up a Microsoft flow that will need to access a registered web app, which utilizes oAuth2 authentication. The purpose of this would be to obtain a JWT access token that will be used to access the protected API in the web app. I…
4
votes
1 answer

How can I resolve "Invalid type. Expected Integer but got Number." for JSON payloads in Power Automate?

I'm getting an error in a sample JSON payload using the Parse JSON function in a Power Automate flow: { "message": "Invalid type. Expected Integer but got Number.", "lineNumber": 0, "linePosition": 0, "path":…
4
votes
1 answer

Retrieve OAuth 2.0 authorization code without user interaction

I am trying to create workflow using Microsoft Flow. Some of my steps are executing HTTP Requests using Microsoft Graph API. Problem I am encountering is that some API do not support Application Permission type, but rather Delegated. I am attempting…
4
votes
0 answers

How to ping a Teams channel with @channel from a Flow?

I am trying to use Microsoft Flow to post a daily message to a Microsoft Teams channel that will notify the users following that channel. When I create the Flow, the message that I write along with dynamic content does not get posted to the channel…
KyleAure
  • 465
  • 4
  • 15
4
votes
1 answer

logic apps - cannot be evaluated because property doesn't exist

In Logic Apps, I have an expression: coalesce(triggerbody().data.job_id,triggerbody().resource_id,'error') I basically want to get the first one that is not null, however one of these does not EXIST in the json payload. I get an error: 'The…
4
votes
0 answers

Invalid Template Error when integrating custom webhook trigger with Microsoft Flow

I am trying to create custom webhook trigger in Microsoft Flow. I have created one sample application where I have implemented webhook service. The application calls the hooks when events occur. I tried integrating my webhook server with Microsoft…