| author | spgraph-docs-team |
|---|---|
| ms.date | 06/18/2025 |
| title | Delete a file or folder |
| ms.localizationpriority | medium |
| ms.subservice | sharepoint |
| description | Delete a DriveItem by using its ID or path. |
| doc_type | apiPageType |
Namespace: microsoft.graph
Delete a DriveItem by using its ID or path. Deleting items using this method moves the items to the recycle bin instead of permanently deleting the item.
[!INCLUDE national-cloud-support]
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]
[!INCLUDE app-permissions]
DELETE /drives/{drive-id}/items/{item-id}
DELETE /groups/{group-id}/drive/items/{item-id}
DELETE /me/drive/items/{item-id}
DELETE /sites/{siteId}/drive/items/{itemId}
DELETE /users/{userId}/drive/items/{itemId}| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
| if-match | String. Optional. If this request header is included and the eTag (or cTag) provided doesn't match the current tag on the item, a 412 Precondition Failed response is returned and the item isn't deleted. |
| prefer | String. Optional. A value of bypass-shared-lock bypasses any shared locks on the driveItem (for example, from a coauthoring session). A value of bypass-checked-out bypasses the checkout condition on the driveItem. Multiple comma-separated values are allowed. |
The following example shows how to call this API.
DELETE https://graph.microsoft.com/v1.0/me/drive/items/{item-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]
If successful, this call returns a 204 No Content response to indicate that resource was deleted and there was nothing to return.
HTTP/1.1 204 No ContentSee Error Responses for more info about how errors are returned.