---
title: "UpdateWorkspaceBody"
description: "Request body for updating a Workspace."
section: "Reference"
group: "Types"
order: 279
---

## Definition

```ts
interface UpdateWorkspaceBody {
  name?: string | undefined;
  handle?: string | undefined;
}
```

## Fields

| Field    | Type                  | Notes                             |
| -------- | --------------------- | --------------------------------- |
| `name`   | `string \| undefined` | `optional` — New workspace name   |
| `handle` | `string \| undefined` | `optional` — New workspace handle |
