Add owners
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Add a user or service principal to a Microsoft 365 or security group's owners. The owners are a set of users or service principals who are allowed to modify the group object.
Important: If you update the group owners and you created a team for the group, it can take up to 2 hours for the owners to be synchronized with Microsoft Teams. Also, if you want the owner to be able to make changes in a team - for example, by creating a Planner plan - the owner also needs to be added as a group/team member.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
Permissions
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
Permission type | Least privileged permissions | Higher privileged permissions |
---|---|---|
Delegated (work or school account) | Group.ReadWrite.All | Directory.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | Group.ReadWrite.All | Directory.ReadWrite.All |
In delegated scenarios, the signed-in user must also be assigned a supported Microsoft Entra role or a custom role with the required role permission. The following least privileged roles are supported for this operation:
Microsoft Entra role | Limitations | Key role permission |
---|---|---|
Group owners | Can modify all types of group owners | microsoft.directory/groups/owners/update |
User Administrator | Can modify user owners only | microsoft.directory/groups/owners/update |
Directory Writers | Can modify user owners only | microsoft.directory/groups/owners/update |
Groups Administrator | Can modify all types of group owners | microsoft.directory/groups/owners/update |
Exchange Administrator | Can modify owners of Microsoft 365 groups only | microsoft.directory/groups.unified/owners/update |
SharePoint Administrator | Can modify owners of Microsoft 365 groups only | microsoft.directory/groups.unified/owners/update |
Teams Administrator | Can modify owners of Microsoft 365 groups only | microsoft.directory/groups.unified/owners/update |
Yammer Administrator | Can modify owners of Microsoft 365 groups only | microsoft.directory/groups.unified/owners/update |
Intune Administrator | Can modify owners of security groups only | microsoft.directory/groups.security/owners/update |
Knowledge Administrator | Can modify owners of security groups only | microsoft.directory/groups.security/owners/update |
Knowledge Manager | Can modify owners of security groups only | microsoft.directory/groups.security/owners/update |
Windows 365 Administrator | Can modify owners of security groups only | microsoft.directory/groups.security/owners/update |
HTTP request
POST /groups/{id}/owners/$ref
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Content-type | application/json. Required. |
Request body
In the request body, supply a JSON representation with the @odata.id of a user or servicePrincipal object to be added.
Response
If successful, this method returns a 204 No Content
response code. It doesn't return anything in the response body. This method returns a 400 Bad Request
response code when the object is already a member of the group. This method returns a 404 Not Found
response code when the object being added doesn't exist.
Example
Request
The following example shows a request that adds a user as a group owner.
POST https://graph.microsoft.com/beta/groups/{id}/owners/$ref
Content-type: application/json
{
"@odata.id": "https://graph.microsoft.com/beta/users/{id}"
}
In the request body, supply a JSON representation with the @odata.id of a user or servicePrincipal object to be added.
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 204 No Content