Users and Groups
Understanding Users and Groups in Microsoft 365
Users represent people (like employees) in your Microsoft 365 tenant.
Groups are collections of users.
Examples: Microsoft 365 groups, security groups, distribution lists.
Many business processes involve managing users and groups dynamically.
Graph API allows you to automate these tasks at scale!
π οΈ Common Endpoints
Get my profile
/me
Get all users
/users
Get specific user
/users/{user-id}
Create user
/users
Update user
/users/{user-id}
Delete user
/users/{user-id}
Get all groups
/groups
Get specific group
/groups/{group-id}
Create group
/groups
Add member to group
/groups/{group-id}/members/$ref
π€ Working with Users
π§ 1. Get All Users
β This will return a list of users in your tenant.
π§ 2. Get a Specific User
{user-id}
can be the user's object ID, UPN (user principal name), or email address.
Example:
π§ 3. Create a New User
β This will create a brand-new user account!
Important: You must have User.ReadWrite.All or Directory.ReadWrite.All application permissions.
π§ 4. Update a User
Use PATCH
to modify only specific fields.
Example: Change a userβs department.
β Only the department field will be updated!
π§ 5. Delete a User
β Permanently deletes the user account (moves to "soft delete" first in Azure).
π₯ Working with Groups
π§ 1. Get All Groups
β Lists all groups (Microsoft 365 groups, security groups, etc.).
π§ 2. Get a Specific Group
β Retrieves details of a specific group.
π§ 3. Create a New Group
Example: Create a security group.
β Creates a security-enabled group (not a Microsoft 365 group).
Important:
For Microsoft 365 groups, set
"groupTypes": ["Unified"]
For security groups, set
"securityEnabled": true
π§ 4. Add Member to a Group
β Adds a user to a group.
Tip: Adding users to groups is essential for access control in Azure and Microsoft 365.
π§ 5. Remove Member from a Group
β Removes a user from a group.
π¨ Important Permissions Needed
Read users/groups
User.Read.All
, Group.Read.All
Create/update/delete users/groups
User.ReadWrite.All
, Group.ReadWrite.All
, Directory.ReadWrite.All
Add/remove group members
GroupMember.ReadWrite.All
Always grant admin consent for these permissions when using application credentials!
Last updated