---
title: "aeontel workspace"
description: "Manage workspaces"
section: "CLI"
group: "Commands"
order: 840
---

## Workspace commands

### `aeontel workspace list`

List your workspaces

```ts
aeontel workspace list
```

```bash
aeontel workspace list
```

### `aeontel workspace create`

Create a workspace

```ts
aeontel workspace create <name> <handle> --organization <orgId>
```

```bash
aeontel workspace create "My name" my-handle --organization <orgId>
```

### `aeontel workspace get`

Get workspace details

```ts
aeontel workspace get <id>
```

```bash
aeontel workspace get id_...
```

### `aeontel workspace update`

Update workspace

```ts
aeontel workspace update <id> [--name <name>] [--handle <handle>]
```

```bash
aeontel workspace update id_...
```

### `aeontel workspace delete`

Soft-delete workspace

```ts
aeontel workspace delete <id>
```

```bash
aeontel workspace delete id_...
```

### `aeontel workspace add-member`

Add a member to workspace

```ts
aeontel workspace add-member <id> --user-id <userId> [--role <role>]
```

```bash
aeontel workspace add-member id_... --user-id usr_...
```

### `aeontel workspace email`

Show workspace email settings

```ts
aeontel workspace email <id>
```

```bash
aeontel workspace email id_...
```

### `aeontel workspace email-config`

Update workspace email settings

```ts
aeontel workspace email-config <id> [--enabled <bool>] [--max-bytes <bytes>] [--allowed-senders <list>]
```

```bash
aeontel workspace email-config id_...
```

### `aeontel workspace get-member`

Get a single workspace member

```ts
aeontel workspace get-member <memberId>
```

```bash
aeontel workspace get-member mem_...
```

### `aeontel workspace members`

List workspace members

```ts
aeontel workspace members <id>
```

```bash
aeontel workspace members id_...
```

### `aeontel workspace remove-member`

Remove a member

```ts
aeontel workspace remove-member <memberId>
```

```bash
aeontel workspace remove-member mem_...
```

### `aeontel workspace restore`

Restore a soft-deleted workspace

```ts
aeontel workspace restore <id>
```

```bash
aeontel workspace restore id_...
```

### `aeontel workspace update-role`

Update member role

```ts
aeontel workspace update-role <memberId> --role <role>
```

```bash
aeontel workspace update-role mem_... --role member
```
