One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type
Permissions (from least to most privileged)
Delegated (work or school account)
BrowserSiteLists.ReadWrite.All
Delegated (personal Microsoft account)
Not supported.
Application
BrowserSiteLists.ReadWrite.All
HTTP request
POST /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sites
Request headers
Name
Description
Authorization
Bearer {token}. Required.
Content-Type
application/json. Required.
Request body
In the request body, supply a JSON representation of the browserSite object.
You can specify the following properties when you create a browserSite.
Property
Type
Description
allowRedirect
Boolean
Controls the behavior of redirected sites. If true, indicates that the site will open in Internet Explorer 11 or Microsoft Edge even if the site is navigated to as part of a HTTP or meta refresh redirection chain. Required.
comment
String
The comment for the site. Required
compatibilityMode
browserSiteCompatibilityMode
Controls what compatibility setting is used for specific sites or domains. The possible values are: default, internetExplorer8Enterprise, internetExplorer7Enterprise, internetExplorer11, internetExplorer10, internetExplorer9, internetExplorer8, internetExplorer7, internetExplorer5, unknownFutureValue. Required.
mergeType
browserSiteMergeType
The merge type of the site. The possible values are: noMerge, default, unknownFutureValue. Required.
targetEnvironment
browserSiteTargetEnvironment
The target environment that the site should open in. The possible values are: internetExplorerMode, internetExplorer11, microsoftEdge, configurable, none, unknownFutureValue. Required.
Prior to June 15, 2022, the internetExplorer11 option would allow opening a site in the Internet Explorer 11 (IE11) desktop application. Following the retirement of IE11 on June 15, 2022, the internetExplorer11 option will no longer open an IE11 window and will instead behave the same as the internetExplorerMode option.
webUrl
String
The URL of the site. Required.
Response
If successful, this method returns a 201 Created response code and a browserSite object in the response body.
POST https://graph.microsoft.com/v1.0/admin/edge/internetExplorerMode/siteLists/e370d818-f650-5ab1-499e-5915e83f4573/sites
Content-Type: application/json
Content-length: 387
{
"@odata.type": "#microsoft.graph.browserSite",
"webUrl": "www.microsoft.com",
"targetEnvironment": "InternetExplorer11",
"comment": "A site that opens in InternetExplorer11",
"mergeType": "default",
"compatibilityMode": "default",
"allowRedirect": true
}
// Code snippets are only available for the latest version. Current version is 5.x
var graphClient = new GraphServiceClient(requestAdapter);
var requestBody = new BrowserSite
{
OdataType = "#microsoft.graph.browserSite",
WebUrl = "www.microsoft.com",
TargetEnvironment = BrowserSiteTargetEnvironment.InternetExplorer11,
Comment = "A site that opens in InternetExplorer11",
MergeType = BrowserSiteMergeType.Default,
CompatibilityMode = BrowserSiteCompatibilityMode.Default,
AllowRedirect = true,
};
var result = await graphClient.Admin.Edge.InternetExplorerMode.SiteLists["{browserSiteList-id}"].Sites.PostAsync(requestBody);
// THE CLI IS IN PREVIEW. NON-PRODUCTION USE ONLY
mgc admin edge internet-explorer-mode site-lists sites create --browser-site-list-id {browserSiteList-id} --body '{\
"@odata.type": "#microsoft.graph.browserSite",\
"webUrl": "www.microsoft.com",\
"targetEnvironment": "InternetExplorer11",\
"comment": "A site that opens in InternetExplorer11",\
"mergeType": "default",\
"compatibilityMode": "default",\
"allowRedirect": true\
}\
'
<?php
// THIS SNIPPET IS A PREVIEW VERSION OF THE SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new BrowserSite();
$requestBody->setOdataType('#microsoft.graph.browserSite');
$requestBody->setWebUrl('www.microsoft.com');
$requestBody->setTargetEnvironment(new BrowserSiteTargetEnvironment('internetExplorer11'));
$requestBody->setComment('A site that opens in InternetExplorer11');
$requestBody->setMergeType(new BrowserSiteMergeType('default'));
$requestBody->setCompatibilityMode(new BrowserSiteCompatibilityMode('default'));
$requestBody->setAllowRedirect(true);
$result = $graphServiceClient->admin()->edge()->internetExplorerMode()->siteLists()->byBrowserSiteListId('browserSiteList-id')->sites()->post($requestBody)->wait();
# THE PYTHON SDK IS IN PREVIEW. FOR NON-PRODUCTION USE ONLY
graph_client = GraphServiceClient(request_adapter)
request_body = BrowserSite(
odata_type = "#microsoft.graph.browserSite",
web_url = "www.microsoft.com",
target_environment = BrowserSiteTargetEnvironment.InternetExplorer11,
comment = "A site that opens in InternetExplorer11",
merge_type = BrowserSiteMergeType.Default,
compatibility_mode = BrowserSiteCompatibilityMode.Default,
allow_redirect = True,
)
result = await graph_client.admin.edge.internet_explorer_mode.site_lists.by_site_list_id('browserSiteList-id').sites.post(body = request_body)