entra group member add
Adds a member to a Microsoft Entra ID group
Usage
m365 entra group member add [options]
Options
-i, --groupId [groupId]
The ID of the Microsoft Entra group. Specify
groupId
orgroupDisplayName
but not both.-n, --groupDisplayName [groupDisplayName]
The display name of the Microsoft Entra group. Specify
groupId
orgroupDisplayName
but not both.--ids [ids]
Microsoft Entra IDs of users. You can also pass a comma-separated list of IDs. Specify either
ids
oruserNames
but not both.--userNames [userNames]
The user principal names of users. You can also pass a comma-separated list of UPNs. Specify either
ids
oruserNames
but not both.-r, --role <role>
The role to be assigned to the new users. 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
,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
.--verbose
Runs command with verbose logging.
--debug
Runs command with debug logging.
Examples
Add a single member specified by ID as a member to a group specified by display name.
m365 entra group member add --groupDisplayName Developers --ids 098b9f52-f48c-4401-819f-29c33794c3f5 --role Member
Add multiple members specified by ID as members to a group specified by ID.
m365 entra group member add --groupId a03c0c35-ef9a-419b-8cab-f89e0a8d2d2a --ids "098b9f52-f48c-4401-819f-29c33794c3f5,f1e06e31-3abf-4746-83c2-1513d71f38b8" --role Member
Add a single member specified by UPN as an owner to a group specified by display name.
m365 entra group member add --groupDisplayName Developers --userNames john.doe@contoso.com --role Owner
Adds multiple members specified by UPN as owners to a group specified by ID.
m365 entra group member add --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.