| 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 |
Namespace: microsoft.graph
Get a collection of recycleBinItem resources in the recycleBin of the specified SharePoint Embedded fileStorageContainer.
[!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]
GET /storage/fileStorage/containers/{containerId}/recycleBin/itemsThis method supports the $select and $top OData query parameters to customize the response. For general information, see OData query parameters.
| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK response code and a collection of recycleBinItem objects in the response body.
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]
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"
}
]
}