Hi
I have a flow that triggers a PowerShell RunBook in an Automation account. I have a Get job Output action next which gets something like:
Account : 1234566789
Environment : AzureCloud
Tenant : 1234566789
TenantId : 1234566789
TenantDomain : ourtenent.onmicrosoft.com
Account : 12344567
Environment : AzureCloud
Tenant : 12345678
TenantId : 12346780
TenantDomain : ourtenent.onmicrosoft.com
{
"Connection": "Successful"
"CreateTeam": "Successful"
"TeamName": "My Test"
"TeamOwner": "john.doe@ourdomain.co.uk"
"TeamScope": "External",
"UpdateGroupSettings": "Successful"
"AddToExternalAdminUnit": "Failed to add to ExternalO365Groups Admin Unit"
}
Id like to extract the JSON formatted bit (between the curly braces) to be able to troubleshoot the output. How do i do this?
cheers 🙂