Skip to content

Latest commit

 

History

History
executable file
·
122 lines (89 loc) · 4.28 KB

File metadata and controls

executable file
·
122 lines (89 loc) · 4.28 KB
author vanshisingh
title List items
description Get a collection of recycleBinItem resources in the recycleBin of the specified SharePoint Embedded fileStorageContainer.
ms.localizationpriority medium
ms.subservice sharepoint
doc_type apiPageType
ms.date 12/10/2024

List items

Namespace: microsoft.graph

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

[!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 /storage/fileStorage/containers/{containerId}/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 SharePoint Embedded fileStorageContainer.

GET https://graph.microsoft.com/v1.0/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/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"
    }
  ]
}