Skip to content

Latest commit

 

History

History
124 lines (90 loc) · 4.26 KB

File metadata and controls

124 lines (90 loc) · 4.26 KB
author vanshisingh
title List items
description Get a collection of recycleBinItem resources in the recycleBin of the specified SharePoint site.
ms.localizationpriority medium
ms.subservice sharepoint
doc_type apiPageType
ms.date 04/04/2024

List items

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Get a collection of recycleBinItem resources in the recycleBin of the specified SharePoint site.

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

GET /sites/{siteId}/recycleBin/items

Optional query parameters

This method supports the $select and $top OData query parameters to customize the response. For general information, see OData query parameters.

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 successful, this method returns a 200 OK response code and a collection of recycleBinItem objects in the response body.

Examples

Request

The following example shows a request to list all recycleBinItem resources under a specific site.

GET https://graph.microsoft.com/beta/sites/contoso.sharepoint.com,48f1898f-77d9-4a1b-bddc-1f49bb6dc134,7206fc09-e4af-48b3-8730-ed7321396d7a/recycleBin/items

[!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 200 OK
Content-Type: application/json

{
   "value": [
    {
        "id": "825e764f-c118-438f-b5c4-b8fbe60ab569",
        "name": "file1.txt",
        "size": 469,
        "deletedDateTime": "2023-03-27T12:06:59Z",
        "deletedFromLocation": "Shared Documents/folder1"
    }
  ]
}