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.
POST https://graph.microsoft.com/v1.0/admin/edge/internetExplorerMode/siteLists
Content-Type: application/json
Content-length: 283
{
"displayName": "Production Site List A",
"description": "Production site list for team A"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Models;
var requestBody = new BrowserSiteList
{
DisplayName = "Production Site List A",
Description = "Production site list for team A",
};
// To initialize your graphClient, see https://video2.skills-academy.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Admin.Edge.InternetExplorerMode.SiteLists.PostAsync(requestBody);
mgc admin edge internet-explorer-mode site-lists create --body '{\
"displayName": "Production Site List A",\
"description": "Production site list for team A"\
}\
'
// Code snippets are only available for the latest major version. Current major version is $v1.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
graphmodels "github.com/microsoftgraph/msgraph-sdk-go/models"
//other-imports
)
requestBody := graphmodels.NewBrowserSiteList()
displayName := "Production Site List A"
requestBody.SetDisplayName(&displayName)
description := "Production site list for team A"
requestBody.SetDescription(&description)
// To initialize your graphClient, see https://video2.skills-academy.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
siteLists, err := graphClient.Admin().Edge().InternetExplorerMode().SiteLists().Post(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
BrowserSiteList browserSiteList = new BrowserSiteList();
browserSiteList.setDisplayName("Production Site List A");
browserSiteList.setDescription("Production site list for team A");
BrowserSiteList result = graphClient.admin().edge().internetExplorerMode().siteLists().post(browserSiteList);
const options = {
authProvider,
};
const client = Client.init(options);
const browserSiteList = {
displayName: 'Production Site List A',
description: 'Production site list for team A'
};
await client.api('/admin/edge/internetExplorerMode/siteLists')
.post(browserSiteList);
<?php
use Microsoft\Graph\GraphServiceClient;
use Microsoft\Graph\Generated\Models\BrowserSiteList;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new BrowserSiteList();
$requestBody->setDisplayName('Production Site List A');
$requestBody->setDescription('Production site list for team A');
$result = $graphServiceClient->admin()->edge()->internetExplorerMode()->siteLists()->post($requestBody)->wait();
Import-Module Microsoft.Graph.DeviceManagement
$params = @{
displayName = "Production Site List A"
description = "Production site list for team A"
}
New-MgAdminEdgeInternetExplorerModeSiteList -BodyParameter $params
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.models.browser_site_list import BrowserSiteList
# To initialize your graph_client, see https://video2.skills-academy.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = BrowserSiteList(
display_name = "Production Site List A",
description = "Production site list for team A",
)
result = await graph_client.admin.edge.internet_explorer_mode.site_lists.post(request_body)