Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Automate - Using Flows
Unanswered

Flow Run command has "invalid number of arguments" error for any parameters

(0) ShareShare
ReportReport
Posted on by 43

I'm attempting to pass parameters to a flow that is the button action in a PowerApp.  The action is <flow name>.Run().  No matter what arguments I give to Run, I get an "invalid number of arguments" error.  This implies that no arguments are accepted.  Is this the case?  Other discussions of Run seem to indicate that it does accept arguments.  In that case, what am I doing wrong?  And if it doesn't accept arguments, how else can these be delivered to the invoked flow?

  • Baudelaire Profile Picture
    102 on at
    Re: Flow Run command has "invalid number of arguments" error for any parameters

    Yes, I ran into this myself recently.  There are still aspects of PowerApps that are immature, especially in terms of integration with other members of the PP family.  In my case, I had an integrated flow that itself called SQL stored procedures.  I had to change the SQL side, and therefore needed to change everything upstream including the Run method in the app.  No dice.  PowerApps would NOT let go of the original set of parameters.  Removed connection, renamed flow, refreshed dozens of times, exited the app, etc. etc.  It would not let go of the original parameter signature.  The only thing that worked was completely rebuilding the flow from scratch.  THAT is a massive waste of project development time.  So the issue for me was not setting up the integration - that worked as expected.  It was making a change to the parameters passed via the Ask In PowerApps connector.  They need to take the black box out of this equation and provide us with more control.  To duplicate it just create a Flow integration connection, in the flow add several Ask In Power Apps variables.  Save the flow and the app.  Go back into the flow and remove a few of the Ask In Power Apps variable implementations and save the flow.  Watch in bewilderment as Power Apps hangs on to the original parameter list.  Peek code on the trigger and notice that the original list of parameters is still there.  Only option is to remove the trigger and re-add everything and PRAY you don't make a mistake before saving, or rebuild the whole thing (either option could take similar time depending on the complexity of the flow).  SMH as I ponder the collective number of development hours ($$$) wasted by everyone out there who has dealt with this.

  • marcoswnunes Profile Picture
    11 on at
    Re: Flow Run command has "invalid number of arguments" error for any parameters

    Alright, I had the same issue and it was driving me crazy. Everything was working fine then after an update on my power automate flow I started to get that same error message.


    In my case the issue on my Powerapps trigger.

     

    When I checked on my power automate I had the following message:

    marcoswnunes_1-1648801948243.png
    When I checked my workflow, I noticed there was 3 required content inputs(content_inputs, content_inputs_1 and content_inputs_2). 

     

    marcoswnunes_2-1648802041430.png

     

    I have no idea why other 2 content inputs were created. I tried to delete but I couldn't. Then I deleted my trigger the re-added it but those extra parameters still there. 

     

    My solution was pass those extra parameters in my call on PowerApps so I could move on.

     ExporttoCSV.Run( "My power automate was expecting 3 paramets here" )

     

    First: JSON(colDataExported,JSONFormat.IncludeBinaryData & JSONFormat.IgnoreUnsupportedTypes
    Second: ""

    Third:  ""

     

     

    ExporttoCSV.Run(JSON(colDataExported,JSONFormat.IncludeBinaryData & JSONFormat.IgnoreUnsupportedTypes
    ),"","");

     

    There were cases where I has several required paraments. You can peek code to check it:

     

    marcoswnunes_3-1648802935322.png

     

    marcoswnunes_4-1648803005893.png

     

     

    Hope it helps someone in the future. 

     

     

     

     

     

      

  • kaiserjake Profile Picture
    2 on at
    I hRe: Flow Run command has "invalid number of arguments" error for any parameters

    Can anyone spot the error in this command? PowerApps is saying Invalid Number of Arguments, received 2, expected 1.

     

    Set(varFileLink, UploadtoCDTSIOISharePointSite.Run(Last(AttachmentControl.Attachments).Name, varBase64Only).sharepointfilelink)

  • 365-Assist Profile Picture
    2,312 Super User 2025 Season 1 on at
    Re: Flow Run command has "invalid number of arguments" error for any parameters

    I just had the same problem. Thanks to all the replies in this thread most gave me bits of solutions. Here is what I did to solve it.

     

    1. In the PowerApps remove the Button OnSelect Function Details

    Annotation 2020-06-01 140549.jpg

    2. In Power Automate removed the 'Update File Properties' Action

     

    Annotation 2020-06-01 135526.jpg

    3 In PowerApps - Removed the PowerAutomate Source

    Annotation 2020-06-01 135851.jpg

    4.  In Powerapps - Added in the Power Automate Source back

    Annotation 2020-06-01 140115.jpg

     

    5.In PowerApps - Added back the OnSelect Function

    Annotation 2020-06-01 140929.jpg

     

    6. In Power Automated added back the PowerApp fields

    Annotation 2020-06-01 141047.jpg

     

    I hope this helps someone.

  • ITCareNV Profile Picture
    574 on at
    Re: Flow Run command has "invalid number of arguments" error for any parameters

    What helped for me was to add the variables in flow by "Ask in powerapps", after that in the PowerApps portal in Action => Flows => click on the Flow that is in the second section for it to connect to the Flow and than your parameters will be recognized. See screenshot. Hope this helps someone Smiley LOL 

     

    Screenshot:

    https://imgur.com/W8VjNDX

     

     

  • Rashaad_Compass Profile Picture
    on at
    Re: Flow Run command has "invalid number of arguments" error for any parameters

    I was having the same issues. 

    Once I got PowerApps setup, I had to recreate the flow. 

    That fixed the issues. 

    The Flow was expecting 3 paramenters, even though it showed 1.

     

  • Community Power Platform Member Profile Picture
    on at
    Re: Flow Run command has "invalid number of arguments" error for any parameters

    I am having the same error, just created an one command flow to test the parameters and on powerapps, when calling the flow I get an error message saying that the flow has 0 expected parameters.     "Invalid number of arguments (Received: 1 ; Expected: 0)

     

    on flow, I created a task to send a simple email and added the variable from dynamic contents / Ask in Powerapps on the subject line.

     

     

     powerapp

    Flow

  • zeus Profile Picture
    25 on at
    Re: Flow Run command has "invalid number of arguments" error for any parameters

    This is still hit and miss for me. I have already done "ask in powerapps" twice and powerapps thinks the flow has no arguments. I get the error warning (triangle with exclamation) icon.

     

    It takes a couple of tries, coming back and forth between the two apps to sync.Frustrating... It would be less frustrating if it tells you how many arguments is expected. 

  • KYamazaki0207 Profile Picture
    14 on at
    Re: Flow Run command has "invalid number of arguments" error for any parameters

    Hi everyone,

     

    Sorry if I'm a little too late, but I've been having this issue and just found the solution.  No tricks - it's pretty easy:

     

    1. Ensure the name of your flow matches the "Ask in Powerapps" Flow variable (all characters before the underscore) that you're trying to pass, i.e. if your variable's name is "Sendanemail_To," then your Flow must be named "Sendanemail"
    2. Check how many copies of the same variable exist as an option in your Flow by clicking on the variable and scrolling to the bottom of your variable option window that pops up.  The number of copies will determine the number of arguments that you must include in the Run command in PowerApps, i.e. if you have "Sendanemail_To, Sendanemail_To_1,Sendanemail_To_2" available, you'll need to include three arguments in your Run command.
    3. At this point you may have to force PowerApps to recogize the updated flow immediately by either or all: (a) restarting PowerApps, (b) turning the flow off and turning it back on,/re-doing the Flow from scratch or via copying the Flow and deleting the original, ensuring the remaining copy is named per step #1.
    4. In Powerapps, assign your Flow as usual, and format the Run command parameters per this example: Sendanemail.Run(Text1,Text2...) where "Text" is either a Label or TextInput (with ".Text" appended, of course) or if you'd like to pass text directly as a parameter, just include whatever text you need enclosed in quotation marks.  In my case, I can either pass an email address enclosed in quotes, an email address that's a DataCardValue/Label/TextInput, or User().Email if I wanted an email sent to the user.
    5. Lastly, make sure that your number of arguments matches the number of variables per step #2.  If you don't need that many variables, assign double-quotes ("") in place of the variable.
  • JosephBoland Profile Picture
    43 on at
    Re: Flow Run command has "invalid number of arguments" error for any parameters

    Hi Mabel,

     

    As I understand your proposed solution, it does not work in my environment.  Screenshots are below; here's a description of the components:

     

    1. SharePoint online list called "Messages" with Message Title, Message Text, and Audience columns.
    2. PowerApps form with a "Send Message" button.
    3. Flow called "Send SMS Messages" that is triggered by the PowerApps form.
    4. The "Send Message" button's On Select action is "SendSMSMessages.Run()"
    5. It is not possible to add any parameters to the Run command.  Doing so results in the "Invalid number of arguments" error.

     

    This shows the Run command when a Label control's Text property is added.  Same error with every other parameter I've tried.

     

    PowerApps_Run_error.PNG

     

    Here is a screenshot of the flow.  Note that another open issue with Microsoft, which apparently many others are having (see link below) is that Dynamic Content is not available for PowerApps.

    Flow_PowerApps_no_dynamic_content_final.PNG

     

     

    On the issue of missing "Dynamic Content" for PowerApps, see https://powerusers.microsoft.com/t5/Building-Flows/No-Dynamic-Content-Available-Ask-in-Powerapps-Missing/td-p/68716.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,605 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,946 Most Valuable Professional

Leaderboard

Featured topics

Restore a deleted flow