<!-- Generated by box-gantry. DO NOT EDIT. -->
# RecentItemsManager
Reach these methods through the `recent_items` field on `client::Client`.
## list
`GET /recent_items`
| Parameter | In | Type | Required |
|---|---|---|---|
| `fields` | query | `Vec<String>` | no |
| `limit` | query | `i64` | no |
| `marker` | query | `String` | no |
**Returns:** `RecentItems`
**Example**
```rust
let mut pages = client.recent_items.list(None);
while let Some(item) = pages.next().await {
// use item
}
```
Paginated — `list(...)` returns a paginator you drive with `.next().await`, threading the cursor for you. See the [pagination guide](../pagination.md).