---
title: "UpdateOrganizationBody"
description: "Request body for updating an Organization."
section: "Reference"
group: "Types"
order: 162
---

## Definition

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

## Fields

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