# Workspace Management

## Overview

{% hint style="info" %}

* This feature is available with the [**Paradime Enterprise pack**](https://www.paradime.io/enterprise).&#x20;
* Your API keys ***must*** have either [User Management Admin or User Metadata Viewer capabilities](https://docs.paradime.io/app-help/developers/generate-api-keys).
  {% endhint %}

The Workspace Management module enables you to list all the currently active workspaces within the Paradime account.

## Get all workspaces

Retrieves all active workspaces.

{% tabs %}
{% tab title="Args" %}
**`none`**
{% endtab %}

{% tab title="Returns" %}
*`List[Workspace]`*: A list of active workspaces
{% endtab %}
{% endtabs %}

```python
# First party modules
from paradime import Paradime

# Create a Paradime client with your API credentials
paradime = Paradime(api_endpoint="API_ENDPOINT", api_key="API_KEY", api_secret="API_SECRET")

# Get all workspaces
workspaces = paradime.workspaces.list_all()
```
