Hello,
I managed to created flow that passes variables ( from email or sharepoint ) to azure automation runbooks.
Now, I'd like to receive variables from those runbooks back to flow .
How is this acheivable ?
Thanks,
David
Hi @ DSM,
Could you please share a screenshot of the configuration of your flow?
Do you want to receive variables from runbooks back to flow after passes variables to azure automation runbooks in your flow?
Please share more details so we could provide a proper workaround for you
Regards,
Alice Zhang
Hello Alice,
Yes , I do want to receive variables from runbooks back to flow after passing variables to the same azure automation runbook.
In this example , the variables ( name and days ) are taken from a sharepoint list, to put a user on Litigation Hold.
Flow sends those 2 variables to the runbook and put the user on Litigation Hold
It works very well, but I need to have some kind of confirmation that the command ran successfully, and return back to sharepoint. An output of "get-mailbox" would be great but I dont know how to return it back to Flow.
Thanks for you help,
David
Hello Alice
Waiting for your valuable input....
-David
Hey, @v-yuazh-msft!
@DSM is in further need of assistance on this issue. Please help this user out if you are able to solve thier problem!
Thanks!
Gabriel
Flow Community Manager
Hi,
I am trying to do the same thing - Any chance , Did you found solution.?
Hi,
I found a solution of doing it.
You can do it by passing a variable and then compose a variable. Then generating the variable output as string(output) and passing it as Automation Job ID.
Let me know, if you need screenshot.
@abbas_sayyed - Can you please provide a screenshot? I am also trying to pass output from an Azure Automation runbook back into flow. For example, users create a list item in SharePoint, using that data, I input into Azure Automation Runbok to create a work item in Azure DevOps. I then want to write the work item ID created in the runbook back to the SharePoint list item. How are you passing something as Automation Job Id?
Thanks @abbas_sayyed. I actually found what I was looking for. In Flow, Azure Automation has a task called Get Outputs which I didn't see. I was exepcting the output from the Create Job task. So I added another task after Create Job for Get Output which then passes the output as the "Content" dynamic content. All good!
Could you please send the screen shot for receiving variable from azure automation. And also share the screen shot for azure automation output.
Thanks & Regards
Jacob Robinson
@DSM @abbas_sayyed Hello People
I am kinda new to this area and would really appreciate your help. However I am just a beginner in scripting so need your help here.
I am creating user account in AAD through Flow and set shared mailbox permission through Azure Automation. But I am not sure how I can get the username from Flow and pass it on to Automation Run book. Any suggestion would really help me.
Also I would like to learn more on scripting so if you know any tutorials or anything, please advise.
Thanks in advance.
1. Configure webhook in Azure Automation. (You can achieve the same thing via FunctionApp also)
2. In flow - use “HTTP” trigger and send Payload that you’ll get in runbook.
Hey @AbbasMSFT
Thanks for your feedback, I have created a flow and setup the webhook that calls the job. However everytime I put the input in the Flow and job is triggered, after a few minutes it gets suspended.
Purpose : Provision send as permission to a shared mailbox for the user
Modules installed : ExchangeOnlineManagement, Exchange OnlineShell, MSOnline
Script configured in Azure Automation :
I am just a beginner in scripting and I have modified the existing scripts from gallery.
{
[CmdletBinding()]
param(
[Parameter(Mandatory=$true)]
[ValidateNotNullOrEmpty()]
[System.String]
$UPN,
[parameter(mandatory=$false)]
[system.string[]]
$Users,
[Parameter(Mandatory=$true)]
[System.Management.Automation.CredentialAttribute()]
$localCredentials,
[Parameter(Mandatory=$true)]
[System.Management.Automation.CredentialAttribute()]
$o365adminCredentials,
[Parameter(Mandatory=$false)]
[System.String]
$W,
[parameter(Mandatory=$true)]
[System.String]
$upn1=$Input.UserName, #Get User name from Flow
[parameter(Mandatory=$true)]
[System.String]
$user1=$Input.SharedMailboxName #Get Sharedmailbox details
)
#Connect Exchange Online
Function Connect-ExchangeOnline {
Write-Host -ForegroundColor Magenta "Attempting to connect to Exchange Online"
$EOSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri 'https://outlook.office365.com/powershell-liveid/?proxymethod=rps' -Credential $o365AdminCredentials -Authentication Basic -AllowRedirection
Import-PSSession $EOSession -AllowClobber -DisableNameChecking
}
try {
Connect-ExchangeOnline | Out-Null
Write-Host -ForegroundColor Cyan 'OK'
}
catch {
Write-Host -ForegroundColor Red 'Could not connect to Exchange Online. Exiting.'
return;
}
if ($Users){
foreach ($User in $Users){
Write-Host -ForegroundColor Cyan "Assigning $user FullAccess and SendAs rights on $Alias"
Add-MailboxPermission -Identity $upn1 -AccessRights FullAccess -User $user1 -Confirm:$false -whatif
Add-RecipientPermission -Identity $upn1 -AccessRights SendAs -Trustee $user1 -Confirm:$false -whatif
}
}
#Disconnect from EOL
Get-PSSession | Remove-PSSession -Verbose
}
I am also okay to take any other easy way to achieve solution, Your help is greatly appreciated...!
Try this, You are not parsing Body of Webhook.
param(
[parameter(Mandatory=$true)]
[object] $WebHookData
)
$WebhookName = $WebHookData.WebhookName
$WebhookHeaders = $WebHookData.RequestHeader
$WebhookBody = $WebHookData.RequestBody
$Input = (Convertfrom-Json -InputObject $WebhookBody)
Write-Output "$Input"
############## Parsing JSON from Webhook ###############
Here's how to you connect to your env.
$Cred = Get-AutomationPSCredential -Name "Account_Name_in_Creds"
@AbbasMSFT Thanks again for your response, However I could not achieve the results. Below is what exactly configured now and it ends with error as below. I am sorry that I have to ask you lot of questions since I have no experience with this.
I have just tried to get the output without adding in the powershell script, but it fails as you can see below.
Errors in Az Automation :
Error 1 : ParserError:
Error 2 : Line |
Error 3 : 1 | … -42d2-aff7.ps1' -WebhookData {WebhookName:WHK01,RequestB …
Error 4 : | ~
Error 5 : | Missing argument in parameter list.
Fig 1 : Flow Configuration
PS Script in AZ Automation :
Powershell script I am trying to use to achieve my results :
{
param(
[parameter(Mandatory=$true)]
[object] $WebHookData
)
$WebhookName = $WebHookData.WHK01
$WebhookHeaders = $WebHookData.RequestHeader
$WebhookBody = $WebHookData.RequestBody
$Input = (Convertfrom-Json -InputObject $WebhookBody)
Write-Output "$Input"
############## Parsing JSON from Webhook ###############
$Cred = Get-AutomationPSCredential -Name "SA-EXOAutomationAccount"
#Connect Exchange Online
Function Connect-ExchangeOnline {
Write-Host -ForegroundColor Magenta "Attempting to connect to Exchange Online"
$EOSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri 'https://outlook.office365.com/powershell-liveid/?proxymethod=rps' -Credential $o365AdminCredentials -Authentication Basic -AllowRedirection
Import-PSSession $EOSession -AllowClobber -DisableNameChecking
}
try {
Connect-ExchangeOnline | Out-Null
Write-Host -ForegroundColor Cyan 'OK'
}
catch {
Write-Host -ForegroundColor Red 'Could not connect to Exchange Online. Exiting.'
return;
}
if ($Users){
foreach ($User in $Users){
Write-Host -ForegroundColor Cyan "Assigning $user FullAccess and SendAs rights on $Alias"
Add-MailboxPermission -Identity $upn1 -AccessRights FullAccess -User $user1 -Confirm:$false -whatif
Add-RecipientPermission -Identity $upn1 -AccessRights SendAs -Trustee $user1 -Confirm:$false -whatif
}
}
#Disconnect from EOL
Get-PSSession | Remove-PSSession -Verbose
}
I had the very same error in Automation Account Runbook when it was using powershell in 7.1 version. Creating a new Runbook in version 5.1 did solve the problem.
@zagruby Hey
Thank you for your response, I tried with Version 5.1 however I am ending with the below error.
Error :
Below are my configurations :
Flow :
It would be great if you could help solving this problem.
Thanks in advance
I think that this is because you are wrongly referencing RequestBody: here you have a proper script link.
First you need to catch whole requestbody by sth like this:$ReqBody = $WebhookData.RequestBody and then iterate over it with if condintion to cacth usr name and mailbox.
This will produce nothing:
$WebhookHeaders = $WebHookData.SharedMbx $WebhookBody = $WebHookData.UsrName
Hey
Thanks again, I have modified the script completely and called Azure Automation Job from Power Automate and it worked perfectly.
Episode Fifteen of Power Platform Connections sees David Warner and Hugo Bernier talk to Microsoft MVP Lewis Baybutt aka Low Code Lewis, alongside the latest news and community blogs. Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show. Action requested: Feel free to provide feedback on how we can make our community more inclusive and diverse. This episode premiers live on our YouTube at 12pm PST on Thursday 1st June 2023. Video series available at Power Platform Community YouTube channel. Upcoming events: European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas Join our Communities: Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions. Action requested: Feel free to provide feedback on how we can make our community more inclusive and diverse. This episode premiers live on our YouTube at 12pm PST on Thursday 1st June 2023. Video series available at Power Platform Community YouTube channel. Upcoming events: European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas Join our Communities: Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions.
Welcome to our May 2023 Community Newsletter, where we'll be highlighting the latest news, releases, upcoming events, and the great work of our members inside the Biz Apps communities. If you're new to this LinkedIn group, be sure to subscribe here in the News & Announcements to stay up to date with the latest news from our ever-growing membership network who "changed the way they thought about code". LATEST NEWS "Mondays at Microsoft" LIVE on LinkedIn - 8am PST - Monday 15th May - Grab your Monday morning coffee and come join Principal Program Managers Heather Cook and Karuana Gatimu for the premiere episode of "Mondays at Microsoft"! This show will kick off the launch of the new Microsoft Community LinkedIn channel and cover a whole host of hot topics from across the #PowerPlatform, #ModernWork, #Dynamics365, #AI, and everything in-between. Just click the image below to register and come join the team LIVE on Monday 15th May 2023 at 8am PST. Hope to see you there! Executive Keynote | Microsoft Customer Success Day CVP for Business Applications & Platform, Charles Lamanna, shares the latest #BusinessApplications product enhancements and updates to help customers achieve their business outcomes. S01E13 Power Platform Connections - 12pm PST - Thursday 11th May Episode Thirteen of Power Platform Connections sees Hugo Bernier take a deep dive into the mind of co-host David Warner II, alongside the reviewing the great work of Dennis Goedegebuure, Keith Atherton, Michael Megel, Cat Schneider, and more. Click below to subscribe and get notified, with David and Hugo LIVE in the YouTube chat from 12pm PST. And use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show. UPCOMING EVENTS European Power Platform Conference - early bird ticket sale ends! The European Power Platform Conference early bird ticket sale ends on Friday 12th May 2023! #EPPC23 brings together the Microsoft Power Platform Communities for three days of unrivaled days in-person learning, connections and inspiration, featuring three inspirational keynotes, six expert full-day tutorials, and over eighty-five specialist sessions, with guest speakers including April Dunnam, Dona Sarkar, Ilya Fainberg, Janet Robb, Daniel Laskewitz, Rui Santos, Jens Christian Schrøder, Marco Rocca, and many more. Deep dive into the latest product advancements as you hear from some of the brightest minds in the #PowerApps space. Click here to book your ticket today and save! DynamicMinds Conference - Slovenia - 22-24th May 2023 It's not long now until the DynamicsMinds Conference, which takes place in Slovenia on 22nd - 24th May, 2023 - where brilliant minds meet, mingle & share! This great Power Platform and Dynamics 365 Conference features a whole host of amazing speakers, including the likes of Georg Glantschnig, Dona Sarkar, Tommy Skaue, Monique Hayward, Aleksandar Totovic, Rachel Profitt, Aurélien CLERE, Ana Inés Urrutia de Souza, Luca Pellegrini, Bostjan Golob, Shannon Mullins, Elena Baeva, Ivan Ficko, Guro Faller, Vivian Voss, Andrew Bibby, Tricia Sinclair, Roger Gilchrist, Sara Lagerquist, Steve Mordue, and many more. Click here: DynamicsMinds Conference for more info on what is sure an amazing community conference covering all aspects of Power Platform and beyond. Days of Knowledge Conference in Denmark - 1-2nd June 2023 Check out 'Days of Knowledge', a Directions 4 Partners conference on 1st-2nd June in Odense, Denmark, which focuses on educating employees, sharing knowledge and upgrading Business Central professionals. This fantastic two-day conference offers a combination of training sessions and workshops - all with Business Central and related products as the main topic. There's a great list of industry experts sharing their knowledge, including Iona V., Bert Verbeek, Liza Juhlin, Douglas Romão, Carolina Edvinsson, Kim Dalsgaard Christensen, Inga Sartauskaite, Peik Bech-Andersen, Shannon Mullins, James Crowter, Mona Borksted Nielsen, Renato Fajdiga, Vivian Voss, Sven Noomen, Paulien Buskens, Andri Már Helgason, Kayleen Hannigan, Freddy Kristiansen, Signe Agerbo, Luc van Vugt, and many more. If you want to meet industry experts, gain an advantage in the SMB-market, and acquire new knowledge about Microsoft Dynamics Business Central, click here Days of Knowledge Conference in Denmark to buy your ticket today! COMMUNITY HIGHLIGHTS Check out our top Super and Community Users reaching new levels! These hardworking members are posting, answering questions, kudos, and providing top solutions in their communities. Power Apps: Super Users: @WarrenBelz, @LaurensM @BCBuizer Community Users: @Amik@ @mmollet, @Cr1t Power Automate: Super Users: @Expiscornovus , @grantjenkins, @abm Community Users: @Nived_Nambiar, @ManishSolanki Power Virtual Agents: Super Users: @Pstork1, @Expiscornovus Community Users: @JoseA, @fernandosilva, @angerfire1213 Power Pages: Super Users: @ragavanrajan Community Users: @Fubar, @Madhankumar_L,@gospa LATEST COMMUNITY BLOG ARTICLES Power Apps Community Blog Power Automate Community Blog Power Virtual Agents Community Blog Power Pages Community Blog Check out 'Using the Community' for more helpful tips and information: Power Apps , Power Automate, Power Virtual Agents, Power Pages
Super Users – 2023 Season 1 We are excited to kick off the Power Users Super User Program for 2023 - Season 1. The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts. Super User Season 1 | Contributions July 1, 2022 – December 31, 2022 Super User Season 2 | Contributions January 1, 2023 – June 30, 2023 Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile. Power Apps Power Automate Power Virtual Agents Power Pages Pstork1* Pstork1* Pstork1* OliverRodrigues BCBuizer Expiscornovus* Expiscornovus* ragavanrajan AhmedSalih grantjenkins renatoromao Mira_Ghaly* Mira_Ghaly* Sundeep_Malik* Sundeep_Malik* SudeepGhatakNZ* SudeepGhatakNZ* StretchFredrik* StretchFredrik* 365-Assist* 365-Assist* cha_cha ekarim2020 timl Hardesh15 iAm_ManCat annajhaveri SebS Rhiassuring LaurensM abm TheRobRush Ankesh_49 WiZey lbendlin Nogueira1306 Kaif_Siddique victorcp RobElliott dpoggemann srduval SBax CFernandes Roverandom schwibach Akser CraigStewart PowerRanger MichaelAnnis subsguts David_MA EricRegnier edgonzales zmansuri GeorgiosG ChrisPiasecki ryule AmDev fchopo phipps0218 tom_riha theapurva takolota Akash17 momlo BCLS776 Shuvam-rpa rampprakash ScottShearer Rusk ChristianAbata cchannon Koen5 a33ik Heartholme AaronKnox okeks Matren David_MA Alex_10 Jeff_Thorpe poweractivate Ramole DianaBirkelbach DavidZoon AJ_Z PriyankaGeethik BrianS StalinPonnusamy HamidBee CNT Anonymous_Hippo Anchov KeithAtherton alaabitar Tolu_Victor KRider sperry1625 IPC_ahaas zuurg rubin_boer cwebb365 Dorrinda G1124 Gabibalaban Manan-Malhotra jcfDaniel WarrenBelz Waegemma drrickryp GuidoPreite metsshan If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances. Once they are received the list will be updated.
We are excited to share the ‘Power Platform Communities Front Door’ experience with you! Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well. Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities. Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform. Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.
We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida. Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more. Register today: https://www.powerplatformconf.com/
User | Count |
---|---|
44 | |
31 | |
25 | |
21 | |
11 |
User | Count |
---|---|
79 | |
53 | |
39 | |
24 | |
20 |