cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
DSM
Advocate I
Advocate I

Flow receiving variable from azure automation

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

 

19 REPLIES 19
v-yuazh-msft
Community Support
Community Support

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.

 

f1.PNG

 

Flow sends those 2 variables to the runbook and put the user on Litigation Hold 

 

f2.PNG

 

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

GabrielStJohn
Community Champion
Community Champion

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

- Gabriel
Community Manager
Power Automate | Power Virtual Agents
Super User Program 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?

You will have to use hybrid worker group in Azure Automation , then pass the variable as Webhook in runbook.

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 : 

 

issac_franklin_1-1637057990777.png

 

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 :

issac_franklin_0-1637764149421.png

 

Below are my configurations :

 

param(
[parameter(Mandatory=$true)]
[object] $WebHookData
)
$WebhookName = $WebHookData.WHKPS51 #Webhook name configured in Az Automation
$WebhookHeaders = $WebHookData.SharedMbx #SharedMbx is the data I am getting in Flow (Attached the screenshot below.
$WebhookBody = $WebHookData.UsrName #UsrName is the data I am getting in Flow (Attached the screenshot below.
$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 $WebhookHeaders -AccessRights FullAccess -User $UsrName -Confirm:$false -whatif
Add-RecipientPermission -Identity $WebhookHeaders -AccessRights SendAs -Trustee $UsrName -Confirm:$false -whatif
}
}
#Disconnect from EOL
Get-PSSession | Remove-PSSession -Verbose
 
Webhook :
 
issac_franklin_1-1637764331401.png

 

 

Flow : 

 

issac_franklin_2-1637764456168.png

 

 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.

 

param(
 [parameter(Mandatory=$true)]
 [string] $SharedMbx,
 [parameter(Mandatory=$true)]
 [string] $UsrName
)
$SharedMailbox = $SharedMbx
$UserName = $UsrName
$connection = Get-AutomationConnection –Name AzureRunAsConnection
$tenant = Get-AutomationVariable -Name 'TenantName'
Connect-ExchangeOnline –CertificateThumbprint $connection.CertificateThumbprint –AppId $connection.ApplicationID –ShowBanner:$false –Organization $tenant
Write-Output "Assigning $UserName SendAs rights on $SharedMailbox"
Add-RecipientPermission -Identity $SharedMailbox -AccessRights SendAs -Trustee $UserName -Confirm:$yes

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

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!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

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  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

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.    

Updates to Transitions in the Power Platform Communities

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

Users online (946)