browserSite resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents a site to use in Internet Explorer mode that resides on a site list.

Methods

Method Return type Description
List browserSites browserSite collection Get a list of the browserSite objects and their properties.
Create browserSite browserSite Create a new browserSite object in a browserSiteList.
Get browserSite browserSite Get a browserSite that resides on a browserSiteList.
Update browserSite None Update the properties of a browserSite object.
Delete browserSite None Delete a browserSite from a browserSiteList.

Properties

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.
comment String The comment for the site.
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.
createdDateTime DateTimeOffset The date and time when the site was created.
deletedDateTime DateTimeOffset The date and time when the site was deleted.
history browserSiteHistory collection The history of modifications applied to the site.
id String The unique identifier for the site.
lastModifiedBy identitySet The user who last modified the site.
lastModifiedDateTime DateTimeOffset The date and time when the site was last modified.
mergeType browserSiteMergeType The merge type of the site. The possible values are: noMerge, default, unknownFutureValue.
status browserSiteStatus Indicates the status of the site. The possible values are: published, pendingAdd, pendingEdit, pendingDelete, unknownFutureValue.
targetEnvironment browserSiteTargetEnvironment The target environment that the site should open in. The possible values are: internetExplorerMode, internetExplorer11, microsoftEdge, configurable, none, unknownFutureValue.

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.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.browserSite",
  "allowRedirect": "Boolean",
  "comment": "String",
  "compatibilityMode": "String",
  "createdDateTime": "String (timestamp)",
  "deletedDateTime": "String (timestamp)",
  "history": [
    {
      "@odata.type": "microsoft.graph.browserSiteHistory"
    }
  ],
  "id": "String (identifier)",
  "lastModifiedBy": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "lastModifiedDateTime": "String (timestamp)",
  "mergeType": "String",
  "status": "String",
  "targetEnvironment": "String",
  "webUrl": "String"
}