> ## 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.

# List Teams

Returns a list of all teams the authenticated user belongs to.

## Response

<ResponseField name="data" type="array">
  Array of team objects.

  <Expandable title="team">
    <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>
  </Expandable>
</ResponseField>
