Skip to content

Latest commit

 

History

History
118 lines (80 loc) · 4.01 KB

File metadata and controls

118 lines (80 loc) · 4.01 KB
author spgraph-docs-team
title Delete bundle
description Delete a bundle of driveItems.
ms.localizationpriority medium
ms.subservice sharepoint
doc_type apiPageType
ms.date 04/04/2024

Delete bundle

Namespace: microsoft.graph

Delete a bundle of driveItems by using its id. Deleting a bundle using this method permanently deletes the bundle and doesn't move it to the Recycle Bin. It doesn't, however, remove the items that were referenced by the bundle. They remain in their parent folders.

[!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 /drive/items/{bundle-id}

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
if-match eTag. Optional. If this request header is included and the eTag (or cTag) provided doesn't match the current tag on the bundle, a 412 Precondition Failed response is returned and the bundle won't be deleted.

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 204 No Content response code. It doesn't return anything in the response body.

For information about error responses, see Microsoft Graph error responses and resource types.

Example

Request

The following example shows a request.

DELETE https://graph.microsoft.com/v1.0/drive/items/{bundle-id}

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