Project

General

Profile

Task #2892

Updated by Roman Kučera over 3 years ago

In Azure AD, there are two types of users: 
 * Member 
 * Guest 

 In case you want to manage both types the config property should remain empty (default behavior) 
 If you want to manage only one type, then you should use the values Member or Guest 

 This will be mainly used in get operation. e.g. https://graph.microsoft.com/v1.0/users?$select=userPrincipalName,userType&$filter=userType eq 'Guest' 
 It will be maybe used in other operation to but only if it make sense.

Back