| title | List group owners |
|---|---|
| description | Retrieve a list of the group's owners. The owners are a set of non-admin users who are allowed to modify the group object. |
| ms.localizationpriority | high |
| author | yuhko-msft |
| ms.reviewer | mbhargav, khotzteam, aadgroupssg |
| ms.subservice | entra-groups |
| doc_type | apiPageType |
| ms.date | 06/21/2024 |
Namespace: microsoft.graph
Retrieve a list of the group's owners. The owners are a set of users or service principals who are allowed to modify the group object. Owners are currently not available in Microsoft Graph for groups that were created in Exchange, distribution groups, or groups that are synchronized from an on-premises environment.
Note: Currently, service principals are not listed as group owners due to the staged rollout of service principals to the Microsoft Graph v1.0 endpoint.
[!INCLUDE national-cloud-support]
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.
[!INCLUDE permissions-table]
[!INCLUDE limited-info]
In delegated scenarios, the signed-in user must also be assigned a supported Microsoft Entra role or a custom role with the microsoft.directory/groups/owners/read role permission. The following least privileged roles are supported for this operation:
- Group owners
- "Member" users
- "Guest" users - have limited read permissions
- Directory Readers
- Directory Writers
- Groups Administrator
- User Administrator
- Exchange Administrator - for Microsoft 365 groups only
- SharePoint Administrator - for Microsoft 365 groups only
- Teams Administrator - for Microsoft 365 groups only
- Yammer Administrator - for Microsoft 365 groups only
- Intune Administrator - for security groups only
GET /groups/{id}/ownersThis method supports the $filter, $count, $select, $search, $top, and $expand OData query parameters to help customize the response.
- OData cast is enabled. For example,
/groups/{id}/members/microsoft.graph.userretrieves group owners that are users. $searchis supported on the displayName and description properties only.- The use of query parameters with this API, except for
$expand, is supported only with advanced query parameters.$expandisn't supported with advanced query parameters. For more information, see Advanced query capabilities on directory objects.
| Name | Type | Description |
|---|---|---|
| Authorization | string | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK response code and collection of user objects in the response body.
The following example shows a request.
GET https://graph.microsoft.com/v1.0/groups/02bd9fd6-8f93-4758-87c3-1fb73740a315/owners
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-type: application/json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#directoryObjects",
"value": [
{
"@odata.type": "#microsoft.graph.user",
"id": "4562bcc8-c436-4f95-b7c0-4f8ce89dca5e",
"accountEnabled": true,
"displayName": "MOD Administrator",
"userPrincipalName": "admin@contoso.com"
},
{
"@odata.type": "#microsoft.graph.user",
"id": "f0206b06-7c5d-461c-ae24-08f68b7ef463",
"accountEnabled": true,
"displayName": "Megan Bowen",
"userPrincipalName": "MeganB@contoso.com"
},
{
"@odata.type": "#microsoft.graph.user",
"id": "5c70937c-d9ea-4a47-8852-ab77630f803d",
"accountEnabled": true,
"displayName": "Diego Siciliani",
"userPrincipalName": "DiegoS@contoso.com"
}
]
}