> ## Documentation Index
> Fetch the complete documentation index at: https://docs-staging-quickstart-revamp.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Team Activity allows Team Owners to view and audit event logs generated by team member.

# Team Activity

Team Activity allows Team Owners to view audit logs associated to member activities performed on their Auth0 account.

Team Activity report is located under the **Reports** section of the Teams Dashboard.

Team Activity provides a summary view of the member who generated the event, the event type, and the date the event was generated.

You can select **View Details** to find more information such as the description of the event, the event status, the IP address of the user who triggered the event, user agent details, and more.

## Event types

Team Activity event types are described below.

<table class="table">
  <thead>
    <tr>
      <th><strong>Event Type</strong></th>
      <th><strong>Description</strong></th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>Team Invitation</td>
      <td>Team member invitation created <br /> Team member invitation deleted</td>
    </tr>

    <tr>
      <td>Team Member</td>
      <td>Team member deleted <br /> Team member role updated</td>
    </tr>

    <tr>
      <td>Security Policy</td>
      <td>Security policy updated <br /> Social connections updated</td>
    </tr>

    <tr>
      <td>Team Setting</td>
      <td>Team settings updated</td>
    </tr>
  </tbody>
</table>

<Callout icon="file-lines" color="#0EA5E9" iconType="regular">
  Support for dashboard user authentication to Auth0 and Teams Dashboard and other events will be available in the future.
</Callout>

## Event schema

Team Activity event schema is described below.

```json lines
{  
    "id": "string", 
    "team_id": "string",
    "user_id": "string",
    "type": "string",
    "description": "string",
    "status": "string",
    "details": "object",
    "ip": "string",
    "hostname": "string",
    "user_agent": "string",
    "version": "string",
    "created_at": "date",
    "team_slug": "string",
    "user": "object"
}
```

<table class="table">
  <thead>
    <tr>
      <th><strong>Name</strong></th>
      <th><strong>Type</strong></th>
      <th><strong>Description</strong></th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td><code>id</code></td>
      <td>string</td>
      <td>Event log unique identification.</td>
    </tr>

    <tr>
      <td><code>team\_id</code></td>
      <td>string</td>
      <td>Unique team identification.</td>
    </tr>

    <tr>
      <td><code>user\_id</code></td>
      <td>string</td>
      <td>The unique identifier for the user that generated the event.</td>
    </tr>

    <tr>
      <td><code>type</code></td>
      <td>string</td>
      <td>Event type.</td>
    </tr>

    <tr>
      <td><code>description</code></td>
      <td>string</td>
      <td>Event type summary.</td>
    </tr>

    <tr>
      <td><code>status</code></td>
      <td>string</td>
      <td>Event status. Possible values are <code>Success</code> or <code>Failure</code>.</td>
    </tr>

    <tr>
      <td><code>details</code></td>
      <td>object</td>
      <td>Details of the logged event.</td>
    </tr>

    <tr>
      <td><code>ip</code></td>
      <td>string</td>
      <td>IP address of the user that generated the event log.</td>
    </tr>

    <tr>
      <td><code>hostname</code></td>
      <td>string</td>
      <td>FQDN of the Auth0 App on which the event was performed.</td>
    </tr>

    <tr>
      <td><code>user\_agent</code></td>
      <td>string</td>
      <td>Web browser and Device OS type and version.</td>
    </tr>

    <tr>
      <td><code>version</code></td>
      <td>string</td>
      <td>Schema version under which the activity log was generated.</td>
    </tr>

    <tr>
      <td><code>created\_at</code></td>
      <td>datetime</td>
      <td>Date and time event log was generated.</td>
    </tr>

    <tr>
      <td><code>team\_slug</code></td>
      <td>string</td>
      <td>Unique text team identifier.</td>
    </tr>

    <tr>
      <td><code>user</code></td>
      <td>object</td>
      <td>Contains name, avatar URL, and Team membership status (boolean).</td>
    </tr>
  </tbody>
</table>

## Audit log retention

The retention of Team Activity audit logs varies by plan. Read our [Pricing](https://auth0.com/pricing) page for more information.
