cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
karl_oliverio
Resolver I
Resolver I

Failed during HTTP send Request

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

 

New error.PNG

29 REPLIES 29
v-litu-msft
Community Support
Community Support

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.

flow-configuration.PNGcanvas-app-configuration.PNG

plohm12
Advocate I
Advocate I

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.

Anonymous
Not applicable

I did exactly as you suggested, multiple times.

 

Doesn't work, but it used to work no problem.

 

sigh

Anonymous
Not applicable

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.

Anonymous
Not applicable

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

Anonymous
Not applicable

@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.

 

Anonymous
Not applicable

@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 🙂 

 

 

joao123
Frequent Visitor

 

I have the same issue when I try to link Powerapps to any flow, even the simple one with only one step (initialize variable).

 

Capturar.PNG
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.

 

Capturar1.PNG

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.

joao123
Frequent Visitor

The code that I post is the code of the trigger of Powerapps.

Capturar123.PNG
When I add a step to initialize a String variable and ask the values to powerapps the code take this form.

asdsad.PNG


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 . 

 ascsa.PNG

Anonymous
Not applicable

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.

 

Connectiing Flow to Button Error.png

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:

Even I faced the similar issue.  This might occur when the Flow is created by Person A and then Person A share the Flow to Person B and now Person B is co owner of Flow, however flow is still using the connection of person A. If Person B wants to add the Flow to PowerApp, Person B have to make sure that all actions which is used into your Flow like Get my Profile, SharePoint etc. is using Person B's connection.



Helpful resources

Announcements

Calling all User Group Leaders and Super Users! Mark Your Calendars for the next Community Ambassador Call on May 9th!

This month's Community Ambassador call is on May 9th at 9a & 3p PDT. Please keep an eye out in your private messages and Teams channels for your invitation. There are lots of exciting updates coming to the Community, and we have some exclusive opportunities to share with you! As always, we'll also review regular updates for User Groups, Super Users, and share general information about what's going on in the Community.     Be sure to register & we hope to see all of you there!

April 2024 Community Newsletter

We're pleased to share the April Community Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members.   If you're new to the Community, please make sure to follow the latest News & Announcements and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across Microsoft Power Platform and beyond.    COMMUNITY HIGHLIGHTS   Check out the most active community members of the last month! These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzDeenujialexander2523ragavanrajanLaurensMManishSolankiMattJimisonLucas001AmikcapuanodanilostephenrobertOliverRodriguestimlAndrewJManikandanSFubarmmbr1606VishnuReddy1997theMacResolutionsVishalJhaveriVictorIvanidzejsrandhawahagrua33ikExpiscornovusFGuerrero1PowerAddictgulshankhuranaANBExpiscornovusprathyooSpongYeNived_Nambiardeeksha15795apangelesGochixgrantjenkinsvasu24Mfon   LATEST NEWS   Business Applications Launch Event - On Demand In case you missed the Business Applications Launch Event, you can now catch up on all the announcements and watch the entire event on-demand inside Charles Lamanna's latest cloud blog.   This is your one stop shop for all the latest Copilot features across Power Platform and #Dynamics365, including first-hand looks at how companies such as Lenovo, Sonepar, Ford Motor Company, Omnicom and more are using these new capabilities in transformative ways. Click the image below to watch today!   Power Platform Community Conference 2024 is here! It's time to look forward to the next installment of the Power Platform Community Conference, which takes place this year on 18-20th September 2024 at the MGM Grand in Las Vegas!   Come and be inspired by Microsoft senior thought leaders and the engineers behind the #PowerPlatform, with Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab and Leon Welicki already confirmed to speak. You'll also be able to learn from industry experts and Microsoft MVPs who are dedicated to bridging the gap between humanity and technology. These include the likes of Lisa Crosbie, Victor Dantas, Kristine Kolodziejski, David Yack, Daniel Christian, Miguel Félix, and Mats Necker, with many more to be announced over the coming weeks.   Click here to watch our brand-new sizzle reel for #PPCC24 or click the image below to find out more about registration. See you in Vegas!       Power Up Program Announces New Video-Based Learning Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram. These include a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the image below to find out more!   UPCOMING EVENTS Microsoft Build - Seattle and Online - 21-23rd May 2024 Taking place on 21-23rd May 2024 both online and in Seattle, this is the perfect event to learn more about low code development, creating copilots, cloud platforms, and so much more to help you unleash the power of AI.   There's a serious wealth of talent speaking across the three days, including the likes of Satya Nadella, Amanda K. Silver, Scott Guthrie, Sarah Bird, Charles Lamanna, Miti J., Kevin Scott, Asha Sharma, Rajesh Jha, Arun Ulag, Clay Wesener, and many more.   And don't worry if you can't make it to Seattle, the event will be online and totally free to join. Click the image below to register for #MSBuild today!   European Collab Summit - Germany - 14-16th May 2024 The clock is counting down to the amazing European Collaboration Summit, which takes place in Germany May 14-16, 2024. #CollabSummit2024 is designed to provide cutting-edge insights and best practices into Power Platform, Microsoft 365, Teams, Viva, and so much more. There's a whole host of experts speakers across the three-day event, including the likes of Vesa Juvonen, Laurie Pottmeyer, Dan Holme, Mark Kashman, Dona Sarkar, Gavin Barron, Emily Mancini, Martina Grom, Ahmad Najjar, Liz Sundet, Nikki Chapple, Sara Fennah, Seb Matthews, Tobias Martin, Zoe Wilson, Fabian Williams, and many more.   Click the image below to find out more about #ECS2024 and register today!     Microsoft 365 & Power Platform Conference - Seattle - 3-7th June If you're looking to turbo boost your Power Platform skills this year, why not take a look at everything TechCon365 has to offer at the Seattle Convention Center on June 3-7, 2024.   This amazing 3-day conference (with 2 optional days of workshops) offers over 130 sessions across multiple tracks, alongside 25 workshops presented by Power Platform, Microsoft 365, Microsoft Teams, Viva, Azure, Copilot and AI experts. There's a great array of speakers, including the likes of Nirav Shah, Naomi Moneypenny, Jason Himmelstein, Heather Cook, Karuana Gatimu, Mark Kashman, Michelle Gilbert, Taiki Y., Kristi K., Nate Chamberlain, Julie Koesmarno, Daniel Glenn, Sarah Haase, Marc Windle, Amit Vasu, Joanne C Klein, Agnes Molnar, and many more.   Click the image below for more #Techcon365 intel and register today!     For more events, click the image below to visit the Microsoft Community Days website.      

Tuesday Tip | Update Your Community Profile Today!

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!

Tuesday Tip: Getting Started with Private Messages & Macros

Welcome to TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   This Week's Tip: Private Messaging & Macros in Power Apps Community   Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

Users online (5,594)