entra group member set
Updates role of members in a Microsoft Entra ID group
Usage
m365 entra group member set [options]
Options
-i, --groupId [groupId]The ID of the Entra ID group. Specify
groupId, orgroupNamebut not both.-n, --groupName [groupName]The display name of the Microsoft Entra group. Specify
groupId,groupNamebut not both.--userIds [userIds]Comma-separated list of user IDs. Specify either
userIdsoruserNamesbut not multiple.--userNames [userNames]The user principal names of users. You can also pass a comma-separated list of UPNs. Specify either
userIdsoruserNamesbut not both.-r, --role <role>The new role to be assigned to the members. Valid values:
Owner,Member.
-h, --help [help]Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are
options,examples,remarks,permissions,response,full. Default isoptions.--query [query]JMESPath query string. See http://jmespath.org/ for more information and examples.
-o, --output [output]Output type.
json,text,csv,md,none. Defaultjson.--verboseRuns command with verbose logging.
--debugRuns command with debug logging.
Permissions
- Delegated
- Application
| Resource | Permissions |
|---|---|
| Microsoft Graph | GroupMember.ReadWrite.All |
| Resource | Permissions |
|---|---|
| Microsoft Graph | GroupMember.ReadWrite.All |
Examples
Update a single member specified by ID to a member of a group specified by group name
m365 entra group member set --groupName Developers --userIds 098b9f52-f48c-4401-819f-29c33794c3f5 --role Member
Update multiple members specified by ID to members of a group specified by ID
m365 entra group member set --groupId a03c0c35-ef9a-419b-8cab-f89e0a8d2d2a --userIds "098b9f52-f48c-4401-819f-29c33794c3f5,f1e06e31-3abf-4746-83c2-1513d71f38b8" --role Member
Update a single member specified by UPN to an owner of a group specified by group name
m365 entra group member set --groupName Developers --userNames john.doe@contoso.com --role Owner
Update multiple members specified by UPN to owners of a group specified by ID
m365 entra group member set --groupId a03c0c35-ef9a-419b-8cab-f89e0a8d2d2a --userNames "john.doe@contoso.com,adele.vance@contoso.com" --role Owner
Response
The command won't return a response on success.