Hi,
I am adding my flow to my powerapps but I encountered this error. I already tried running it manually on the flow and it did not return any error and it was successfully completed. I tried adding this flow on other app but I still got the same error
Hi @karl_oliverio,
Could you please share screenshots of Flow configuration?
This document is about how to add a Flow in the PowerApps, you can follow it to confirm steps are correct.
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/using-logic-flows
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I am receiving this same issue. I followed the instructions provided, substituting a Common Data Service (Current Environment) action for the SharePoint example action. The flow runs fine when I test it, but I cannot add it to my canvas app. This is minimum configuration, which tells me this as an issue with the PowerApps/Automate connectors, not my setup.
I found a workaround for this. Create a new flow with the PowerApps trigger and a built-in action, i.e. something that doesn't require a connector. Save the flow, and open up the canvas app editor. The app should now be able to load the flow without issue. Save the canvas app, and return to the flow editor. Add additional connectors/actions to the flow and save. Now, the canvas app should be able to successfully trigger the full flow.
This is a pretty simple workaround if you are creating a new flow, but might be a real pain if you're trying to add an existing one to your canvas app. I haven't confirmed what happens if you have to change your flow's input schema after adding it to your canvas app, so plan ahead and define those with the initial flow creation if you can.
The issue here is that my flow exceeds the limit of actions per flow. Currently, Microsoft is allowing only 250 actions per flow. The error shown on the powerapps is quite vague which had me 2 working days before we figure out what causes it.
I did exactly as you suggested, multiple times.
Doesn't work, but it used to work no problem.
sigh
Is the microsoft account that made the flow the same as the one that is making the app? I got exactly this same error trying to use a flow that a colleague made. It worked after I shared the app with him and he added the flow to powerapps with no problems.
Yes it is the same account. I am the creator of the PowerApps application and the creator of the flow. I have attached flows many times. Something has changed, probably has to do with the licensing scheme since today I got a notice that my free trial had ended, which was very surprising to me since I am using a license through the company that employs me. Everything works, I just cannot attach a new flow to a PowerApps button.
I have asked the IT dept. about our licensing.
We observed that when the flow is not shared to person who is going to use it on apps, it will not show or will not work. But when we shared the flow to that person, he eventually able to connect the flow on apps. That's one thing we need to remember when connecting flows to our apps.
@Anonymous - It turns out that we have exceeded 250 actions before when i posted this issue. Probably flows that are connected to PowerApps needs to have a maximum of 250 actions while flows that are not connected to PowerApps can handle 500 actions. You can check the number of actions you have on your flow using this link: https://flowstudio.app/flows
@karl_oliverioThanks for your input but I cannot even attach a flow to a PowerApps button that simply asks for three variables. I have created a flow, form within powerapps using the 'action' tab. All my flow does in initialize three variables and then set the variables with ask_in_powerapps and it fails with the HTTP send request failed.
I have done this many times before, so something is broken and I suspect it has to do with licensing. But PowerApps and powerautomate are included in a business subscription to Office365. This is a pretty good size company so I doubt they went for a cheap solution. Like I say, it was working but now it is not.
I will probably move away from flows triggered by PowerApps, sometimes it's a lot easier to work with the flow, but this is clearly not easy anymore.
The error is useless and confusing, so I can only provide speculation.
But I believe a reason for this error is that the data-type that the flow requests is not supported. E.g. selecting "ask in powerapps" in the input field for an array variable may induce this error. I believe the supported data-types is described somewhere, but its not so obvious.
Its not so easy to update the data-type, this seems to happen with power-apps "automagic" when you click "ask in powerapps". I suggest selecting peek code at the PowerApps trigger, where you can see what datatypes the inputs have. I have often been forced to delete the trigger and ask all the questions again to repair it. I have found that the best way to deal with this issue is to initialize variables for all the questions at the top of the flow, that way its easier to re-build the trigger when it happens.
@hjaf Ok, that actually makes sense. I didn't realize that I couldn't pass an array to powerautomate flows. I will try attaching the flow without asking PowerApps for the array contents. I should be able to initialize the variable and build it in the flow. I do always put my variable right at the start of the flow, so that isn't the problem.
Thanks a lot for your input, I will post my findings when I get a chance to look at my problem again.
I usually just send arrays as a comma and/or semicolon separated string to flow and then use split(item(), ',') in a Select. If I want to have a 2 or more column array, I put split(PowerAppsString, ';') as input to the Select and each field with first(split(item(), ',')) and last(split(item(), ',')). I think you can get more fields from a string into an array with something like last(take(split(item(),','), N) etc but I haven't tried it. There are probably more elegant ways to deal with this, but it works 🙂
I have the same issue when I try to link Powerapps to any flow, even the simple one with only one step (initialize variable).
I don't understand why I have this error I already tried some of the workarounds sugested in this forum with no success. Please help.
Here is the Peek Code of Powerapps trigger in flow. Is there a possiblity that this error is related with the (,) instead of (;) ?
@joao123 is the variable you try to initialize an array? I see that the schema says object, but I don't think its possible to send an object. I think string or number are the only types supported at the moment. There are tricks to send arrays, but you have to do some translation on both ends to turn it into a string and back again in flow.
I'm not sure, but I think that when/if they implement a newer version of Odata its going to allow for more types.
The code that I post is the code of the trigger of Powerapps.
When I add a step to initialize a String variable and ask the values to powerapps the code take this form.
Anyway, I already try diferent types of flow templates, like the "send email" and still it shows the same error : Failed during HTTP send Request .
I am having the same issue connecting a Flow to a PowerApps button. In my case I am customizing a list form rather than creating a canvas app. Everything worked fine until I exported and imported the Flow so it would operate under a service account rather than my account. I imported it as New rather than Update.
The Flow (Send Email to Vendor) is now created and owned by SC1. SC1 is an SCA on the SP site
Send E-mail to Vendor is shared with me (WCC) plus some other admins
Send E-mail to Vendor was created as a Flow to be called by PowerApps button with no pre-defined actions.
I recreated Send E-mail to Vendor while logged in as SC1 and I still get the "Failed during http send request" error.
I did not create the Flow by selecting the "Create a new flow" option within PowerApps if that makes any difference.
Here is the code behind from the trigger:
{
"kind": "PowerApp",
"inputs": {
"schema": {
"type": "object",
"properties": {
"Getitem_Id": {
"type": "integer"
},
"InitializevarUserName_Value": {
"type": "string",
"description": "Enter initial value",
"isPartial": false
},
"InitializevarUserEmail_Value": {
"type": "string",
"description": "Enter initial value",
"isPartial": false
}
},
"required": [
"Getitem_Id",
"InitializevarUserName_Value",
"InitializevarUserEmail_Value"
]
}
}
}
Any suggestions wold be greatly appreciated,
Hi all,
I and my colleagues are experiencing this issue too.
Basically we worked on 1 single app and 1 single flow.
The strange thing is, from 3 people in my team, 2 people had the error message "Failed during HTTP send Request", when adding teh flow to the powerapp. But then when the 3rd person tried it, it worked.
So for us, this is strange, and cannot explained.
While I had the experience that connecting from different location (e.g. using VPN or Terminal Server) could solve some of the issues, in this case, we 3 were connecting from the same location.
Hopefully Microsoft expert in this community would jump in to help.
Thanks.
This link seems to give reasonable explanation:
https://powerusers.microsoft.com/t5/Building-Power-Apps/Failed-during-http-send-request-when-re-addi...
Citing:
Dear Community Members, We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd. During this period, members will not be able to Kudo, Comment, or Reply to any posts. On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities. What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!
We are excited to announce the Summer of Solutions Challenge! This challenge is kicking off on Monday, June 17th and will run for (4) weeks. The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities. Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”) - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024 Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods. You must enter into each weekly Entry Period separately. How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different. Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers. At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing. Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner. A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random. Individuals will be contacted before the announcement with the opportunity to claim or deny the prize. Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners. Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event. ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE** Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24 17 @Anil_g 7 @ManishSolanki 13 @eetuRobo 5 @David_MA 10 @VishnuReddy1997 5 @SpongYe 9JhonatanOB19932 (tie) @Nived_Nambiar 8 @maltie 2 (tie) @PA-Noob 2 (tie) @LukeMcG 2 (tie) @tgut03 2 (tie) Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate @Deenuji 12@ManishSolanki 19 @Anil_g 10 @NathanAlvares24 17 @VishnuReddy1997 6 @Expiscornovus 10 @Tjan 5 @Nived_Nambiar 10 @eetuRobo 3 @SudeepGhatakNZ 8 Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22 Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2 Anil_g2 SharonS2
On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners. The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights. Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.
We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for. We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer. Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together. Here's to new beginnings and endless possibilities! If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport. To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages