Skip to content

Latest commit

 

History

History
177 lines (134 loc) · 6.82 KB

File metadata and controls

177 lines (134 loc) · 6.82 KB
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

List group owners

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]

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.

[!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

HTTP request

GET /groups/{id}/owners

Optional query parameters

This 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.user retrieves group owners that are users.
  • $search is 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. $expand isn't supported with advanced query parameters. For more information, see Advanced query capabilities on directory objects.

Request headers

Name Type Description
Authorization string Bearer {token}. Required. Learn more about authentication and authorization.

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and collection of user objects in the response body.

Example

Request

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]


Response

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"
        }
    ]
}