ESC
Type to search...

BrowserSiteLists.Read.All

Export JSON
Export CSV
Copy URL
Print
ApplicationDelegated Read All Resources

Allows an app to read all browser site lists configured for your organization, without a signed-in user.

Permission data: April 6, 2026 at 4:06 AM UTC
Delegated Access App-Only Access

Permission Details

Application Permission

Read all browser site lists for your organization

Allows an app to read all browser site lists configured for your organization, without a signed-in user.

Delegated Permission User consent allowed

Read browser site lists for your organization

Allows an app to read the browser site lists configured for your organization, on behalf of the signed-in user.

Properties

Microsoft Graph v1.0 endpoint-derived-docs

Properties is shown from stable Microsoft Graph v1.0 metadata.

Property Type Description
edge object A container for Microsoft Edge resources. Read-only.
exchange object A container for the Exchange admin functionality. Read-only.
microsoft365Apps object A container for the Microsoft 365 apps admin functionality.
people object Represents a setting to control people-related admin settings in the tenant.
reportSettings object A container for administrative resources to manage reports.
serviceAnnouncement object A container for service communications resources. Read-only.
sharepoint object
teams object A container for Teams administration functionalities, such as Teams telephone number management functionalities, user Teams configurations, and policy assignments.

JSON Representation

Microsoft Graph v1.0 endpoint-derived-docs

JSON representation is shown from stable Microsoft Graph v1.0 metadata.

JSON representation
{
  "@odata.type": "#microsoft.graph.admin"
}

Relationships

Microsoft Graph v1.0 endpoint-derived-docs

Relationships is shown from stable Microsoft Graph v1.0 metadata.

Relationship Type Description
configurationManagement configurationManagement A container for Tenant Configuration Management (TCM) resources. Read-only.
edge edge A container for Microsoft Edge resources. Read-only.
exchange exchangeAdmin A container for the Exchange admin functionality. Read-only.
microsoft365Apps adminMicrosoft365Apps A container for the Microsoft 365 apps admin functionality.
people peopleAdminSettings Represents a setting to control people-related admin settings in the tenant.
reportSettings adminReportSettings A container for administrative resources to manage reports.
serviceAnnouncement serviceAnnouncement A container for service communications resources. Read-only.
sharepointSettings sharepointSettings A container for administrative resources to manage tenant-level settings for SharePoint and OneDrive.
teams teamsAdministration.teamsAdminRoot A container for Teams administration functionalities, such as Teams telephone number management functionalities, user Teams configurations, and policy assignments.

Graph Methods

Delegated access App-only access
Exact Microsoft Learn match

Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /admin/edge/internetExplorerMode/siteLists
GET /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}
GET /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sharedCookies
GET /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sharedCookies/{browserSharedCookieId}
GET /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sites
GET /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sites/{browserSiteId}
Exact Microsoft Learn match

Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /admin/edge/internetExplorerMode/siteLists
GET /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}
GET /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sharedCookies
GET /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sharedCookies/{browserSharedCookieId}
GET /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sites
GET /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sites/{browserSiteId}
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgAdminEdgeInternetExplorerModeSiteList /admin/edge/internetExplorerMode/siteLists
List browserSiteLists
Get-MgAdminEdgeInternetExplorerModeSiteList /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}
Get browserSiteList
Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sharedCookies
List browserSharedCookies
Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sharedCookies/{browserSharedCookieId}
Get browserSharedCookie
Get-MgAdminEdgeInternetExplorerModeSiteListSite /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sites
List browserSites
Get-MgAdminEdgeInternetExplorerModeSiteListSite /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sites/{browserSiteId}
Get browserSite
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgBetaAdminEdgeInternetExplorerModeSiteList /admin/edge/internetExplorerMode/siteLists
List browserSiteLists
Get-MgBetaAdminEdgeInternetExplorerModeSiteList /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}
Get browserSiteList
Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sharedCookies
List browserSharedCookies
Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sharedCookies/{browserSharedCookieId}
Get browserSharedCookie
Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sites
List browserSites
Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sites/{browserSiteId}
Get browserSite

Code Examples

C# / .NET SDK
Get browserSharedCookie
// Code snippets are only available for the latest version. Current version is 5.x

// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Admin.Edge.InternetExplorerMode.SiteLists["{browserSiteList-id}"].SharedCookies["{browserSharedCookie-id}"].GetAsync();
JavaScript
Get browserSharedCookie
const options = {
	authProvider,
};

const client = Client.init(options);

let browserSharedCookie = await client.api('/admin/edge/internetExplorerMode/siteLists/147713b8-4df2-4717-93a3-bfb1ebb54881/sharedCookies/07f4030f-45ff-4ad1-9277-3b8f6ee74141')
	.get();
PowerShell
Get browserSharedCookie
Import-Module Microsoft.Graph.DeviceManagement

Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId $browserSiteListId -BrowserSharedCookieId $browserSharedCookieId
Python
Get browserSharedCookie
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python

result = await graph_client.admin.edge.internet_explorer_mode.site_lists.by_browser_site_list_id('browserSiteList-id').shared_cookies.by_browser_shared_cookie_id('browserSharedCookie-id').get()

App Registration

1

Navigate to Azure Portal

Go to App registrations in Microsoft Entra admin center

2

Add API Permission

Select your app → API permissions → Add a permission → Microsoft Graph

3

Select Permission Type

Choose Application permissions or delegated permissions and search for BrowserSiteLists.Read.All

4

Grant Admin Consent

Application permissions always require admin consent.