> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vessl.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Organization

### read\_organization

```python theme={null}
vessl.read_organization(
   organization_name: str
)
```

Read organization

**Args**

* `organization_name` (str) : Organization name.

**Example**

```python theme={null}
vessl.read_organization(
    organization_name="foo"
)
```

***

## list\_organizations

```python theme={null}
vessl.list_organizations()
```

List organizations

**Example**

```python theme={null}
vessl.list_organizations()
```

***

## create\_organization

```python theme={null}
vessl.create_organization(
   organization_name: str
)
```

Create organization

**Args**

* `organization_name` (str) : Organization name.

**Example**

```python theme={null}
vessl.create_organization(
    organization_name="foo",
)
```
