Skip to content

Latest commit

 

History

History
193 lines (154 loc) · 7.45 KB

browsersitelist-delete-sites.md

File metadata and controls

193 lines (154 loc) · 7.45 KB
title description author ms.localizationpriority ms.subservice doc_type
Delete browserSite
Delete a browserSite from a browserSiteList.
edward-day-vii
medium
edge-browser-management
apiPageType

Delete browserSite

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Delete a browserSite from a browserSiteList.

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

HTTP request

DELETE /admin/edge/internetExplorerMode/siteLists/{browserSiteListId}/sites/{browserSiteId}

Request headers

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

Request body

Don't supply a request body for this method.

Response

If the site was not previously published, then this method returns a 204 No Content response code on a successful delete. If the site was previously published, then this method returns a 200 OK response code and a browserSiteList object in the response body with the status as pendingDelete. You must publish (for example, via the browserSiteList: publish API) the site to fully remove it from the site list.

Examples

Example 1: Delete a site that was not previously published

Request

The following example shows a request.

DELETE https://graph.microsoft.com/beta/admin/edge/internetExplorerMode/siteLists/07f4030f-45ff-4ad1-9277-3b8f6ee74141/sites/a22cbc85-d5d2-4e61-8414-42e6704c36f7

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

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response.

HTTP/1.1 204 No Content

Example 2: Delete a site that was previously published

Request

The following example shows a request.

DELETE https://graph.microsoft.com/beta/admin/edge/internetExplorerMode/siteLists/07f4030f-45ff-4ad1-9277-3b8f6ee74141/sites/a22cbc85-d5d2-4e61-8414-42e6704c36f7

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

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following is an example of the response where the status has changed to pendingDelete but the site is still published. You must publish the site to fully remove it from the site list.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-Type: application/json

{
    "status": "pendingDelete",
    "id": "a22cbc85-d5d2-4e61-8414-42e6704c36f7",
    "webUrl": "www.microsoft.com",
    "targetEnvironment": "microsoftEdge",
    "mergeType": "default",
    "compatibilityMode": "default",
    "allowRedirect": false,
    "comment": "Site for Microsoft Edge",
    "lastModifiedDateTime": "2022-06-29T15:44:27.2154899Z",
    "createdDateTime": "2022-06-29T14:51:23.8662595Z",
    "createdDateTime": "2022-06-29T14:55:23.8662595Z",
    "lastModifiedBy": {
        "user": {
            "id": "f6ff107e-bc40-4918-a432-8d7b60030a7c",
            "displayName": "Joe Smith"
        },
        "application": null
    },
    "history": []
}