# Workflow$list\_notebooks

### Workflow$<mark style="color:purple;">list\_notebooks</mark>(*max\_results=NULL*) → list<[Notebook](https://docs.redivis.com/api/client-libraries/redivis-r/reference/notebook)>

Returns a list of notebooks within the workflow.

### **Parameters:**

**`max_results` :&#x20;*****int, default NULL***\
If specified, will only return up to max\_results notebooks

### **Returns:**&#x20;

**list<**[**Notebook**](https://docs.redivis.com/api/client-libraries/redivis-r/reference/notebook)**>**

### **Examples:**

```r
workflow <- redivis$user("imathews")$workflow("example_workflow_climate_analysis")
notebooks <- workflow$list_notebooks()

for (notebook in notebooks){
    print(notebook$properties) # Properties will be populated with the notebook.list resource representation
}
```
