Before using this snippet, verify you've met with the following requirements:
- AzureAD app registration
- The correct app permissions for the app registration
- User defined variables:
AADTenantID,AADAppIDandAADAppSecretcreated in your HelloID portal. - Please see our documentation on how to create custom variables: (https://docs.helloid.com/en/variables/custom-variables.html)
This code snippet executes the following tasks:
- Define a hash table
$formObject. The keys of the hash table represent the properties to add a user account to a group, while the values represent the values entered in the form.
To view an example of the form output, please refer to the JSON code pasted below.
{
"GroupIdentity": "1def3157-d712-4ee8-a458-c7b3202431f2",
"MembersToAdd": [
{
"userPrincipalName": "[email protected]"
},
{
"userPrincipalName": "[email protected]"
}
]
}❗ It is important to note that the names of your form fields might differ. Ensure that the
$formObjecthashtable is appropriately adjusted to match your form fields. See the Microsoft Docs page
-
Receive a bearer token by making a POST request to:
https://login.microsoftonline.com/$AADTenantID/oauth2/token, where$AADTenantIDis the ID of your Azure Active Directory tenant. -
update the attribues of a group using the:
Invoke-RestMethodcmdlet. The hash table called:$formObjectis passed to the body of the:Invoke-RestMethodcmdlet as a JSON object.