---
title: "CreateTeamBody"
description: "Request body for creating a Team."
section: "Reference"
group: "Types"
order: 225
---

## Definition

```ts
interface CreateTeamBody {
  organizationId: string;
  name: string;
  handle: string;
}
```

## Fields

| Field            | Type     | Notes                                              |
| ---------------- | -------- | -------------------------------------------------- |
| `organizationId` | `string` | `required` — Organization the team belongs to.     |
| `name`           | `string` | `required` — Team name                             |
| `handle`         | `string` | `required` — Team handle (unique per organization) |
