I am trying to automate the creation of users in Azure AD. I downloaded the UiPath.AzureADUpdateUser package, and I can see that there are activities to “Create user” and “Update user”.
However, the create user only lets me put basic information like name, last name and UPN. I am trying to create a user with more properties (country, company name…). The update user activity on the other side doesn’t even have any attributes:
Anyone knows how I can achieve that without having to run a script? Any other Azure package that lets you create users whith all the variables/properties I want?
Thanks for your response. I am using version 22.4. That activity only allows you to create a user with the following properties: FirstName LastName Name UserPrincipalName Department
you need to use for each user which has odata filter to get specific created user and then inside that use assign activity and update the current user properties like user.Country = “CountryName” in assign and then send the updated user variable to update user inside the same loop