# Workflow\.list\_parameters

### Workflow.<mark style="color:purple;">list\_parameters</mark>(*max\_results=None*) → list<[Parameter](https://docs.redivis.com/api/client-libraries/redivis-python/reference/parameter)>

Returns a list of parameters within the workflow.

### **Parameters:**

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

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

**list<**[**Parameter**](https://docs.redivis.com/api/client-libraries/redivis-python/reference/parameter)**>**

### **Examples:**

```python
workflow = redivis.user("imathews").workflow("example_workflow_climate_analysis")
parameters = workflow.list_parameters()

for parameter in parameters:
    print(parameter.properties) # Properties will be populated with the parameter.list resource representation
```
