> ## 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 teams that have access to the specified location, including their access permissions.

<ParamField path="site" type="string" required>
  The UUID of the location.
</ParamField>

## Response

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

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

<ResponseField name="email" type="string">
  The email address associated with the team.
</ResponseField>

<ResponseField name="access" type="object">
  The team's access permissions for this location.

  <Expandable title="access">
    <ResponseField name="is_owner" type="boolean">
      Whether the team is the location owner.
    </ResponseField>

    <ResponseField name="data_access" type="boolean">
      Whether the team has sensitive data access.
    </ResponseField>

    <ResponseField name="data_access_expires_at" type="string">
      ISO 8601 timestamp of when sensitive data access expires. May be `null` for permanent access.
    </ResponseField>

    <ResponseField name="can_access_all_assets" type="boolean">
      Whether the team can access all assets on the location.
    </ResponseField>

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

    <ResponseField name="updated_at" type="string">
      ISO 8601 timestamp of when team access was last updated.
    </ResponseField>
  </Expandable>
</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>
