# TrashedItemsManager
Reach these methods through the `trashed_items` field on `client::Client`.
## list_folder_trash_items
`GET /folders/trash/items`
| `fields` | query | `Vec<String>` | no |
| `limit` | query | `i64` | no |
| `offset` | query | `i64` | no |
| `usemarker` | query | `bool` | no |
| `marker` | query | `String` | no |
| `direction` | query | `OrderDirection` | no |
| `sort` | query | `GetFolderTrashItemsSort` | no |
**Returns:** `Items`
Paginated — `list_folder_trash_items(...)` returns a paginator you drive with `.next().await`, threading the cursor for you. See the [pagination guide](../pagination.md).