How to assign license to newly created user in Microsoft 365 using Graph API?

Using Reference https://stackoverflow.com/questions/55099299/assign-a-license-microsoft-graph-api

await client.Users[user.Id].AssignLicense(licensesToAdd, licensesToRemove).Request().PostAsync();

But in abow help what would be the value of “licensesToRemove” ?

Leave a Comment