List items

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.

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

This API is available in the following national cloud deployments.

Global service US Government L4 US Government L5 (DOD) China operated by 21Vianet

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.

Permission type Least privileged permissions Higher privileged permissions
Delegated (work or school account) Files.Read Files.Read.All, Files.ReadWrite, Files.ReadWrite.All, Sites.Read.All, Sites.ReadWrite.All
Delegated (personal Microsoft account) Files.Read Files.ReadWrite, Files.Read.All, Files.ReadWrite.All
Application Files.Read.All Files.ReadWrite.All, Sites.Read.All, Sites.ReadWrite.All

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

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"
    }
  ]
}