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

# Get Team Access

Returns a specific team's access details for the specified location. Returns a `404` error if the team does not have access to the location.

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

<ParamField path="team" type="string" required>
  The UUID of the team.
</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>
