I am trying to fetch all the members (co-administrators) of an Azure Subscription and their email IDs. I am a Global Administrator in this subscription so access is not an issue. I am looking for any PowerShell cmdlet or any API which can provide this information.
I have tried to run the following but it only gives me my information but no other accounts which are also co-administrators in my subscription.
Get-AzureSubscription -Id "22222aaa-2a22-2a22-a2aa-2a0525c574c3" | Select-Object Accounts
Any pointers or references will be really helpful.