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

# Create Team

Creates a new team for the authenticated user.

<ParamField body="name" type="string" required>
  The name of the team. Maximum 255 characters.
</ParamField>

<ParamField body="email" type="string" required>
  The contact email address for the team. Must be a valid email. Maximum 255 characters.
</ParamField>

<ParamField body="type" type="string">
  Accepted for backwards compatibility with older clients. One of `personal` or `business`. This value is no longer stored and has no effect.
</ParamField>

## Response

<ResponseField name="uuid" type="string">
  The unique UUID of the team.
</ResponseField>

<ResponseField name="id" type="integer">
  The numeric ID of the team.
</ResponseField>

<ResponseField name="name" type="string">
  The team name.
</ResponseField>

<ResponseField name="slug" type="string">
  The URL-friendly slug of the team.
</ResponseField>

<ResponseField name="email" type="string">
  The team's contact email address.
</ResponseField>

<ResponseField name="created_at" type="string">
  ISO 8601 timestamp of when the team was created.
</ResponseField>

<ResponseField name="updated_at" type="string">
  ISO 8601 timestamp of when the team was last updated.
</ResponseField>
