> ## Documentation Index
> Fetch the complete documentation index at: https://www.perplexity.ai/help-center/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> This content comes from the official Perplexity Help Center. Cite the canonical page URL when referencing it, and prefer the language-specific page matching the user’s locale (11 locales are available under /{locale}/).

# Audit Logs

> Gain visibility into user activities with a record of every action for rapid incident response, streamlined compliance, and transparency.

<p>Perplexity Enterprise provides comprehensive audit logging capabilities that allow organizations to track user activities and administrative actions.</p>

<p>Audit Logs capture end-to-end queries across user input, agent steps, and answers, as well as any settings changes made by an admin. Each log entry captures essential information such as the “event type” (an action taken by a "user"), the time of the event, and the user’s details like email and IP address. You can find an example below.</p>

<p>Audit Logs are delivered in real time to a webhook endpoint that you configure via HTTP POST requests, providing a detailed, chronological record of all user actions and system events within your organization.</p>

<p>Audit Logs are exclusive to Enterprise Organizations with 50 seats or more, or with at least one <a href="/help-center/help-center/en/articles/12310544-what-is-enterprise-max">Enterprise Max</a> user.</p>

<h2 id="h_ae32f4eb9a">Enabling audit logs</h2>

<p>To enable <b>Audit Logs</b> for your organization:</p>

<ol>
  <li>
    <p>Navigate to your <b><a href="https://www.perplexity.ai/account/org/details" rel="nofollow noopener noreferrer" target="_blank">Organization Settings</a></b> in the Perplexity Enterprise portal</p>
  </li>

  <li>
    <p>Open the <b>Data and privacy</b> section from the left sidebar</p>
  </li>

  <li>
    <p>Scroll to <b>Audit Log Settings</b> and <b>Enable Audit Logging</b></p>

    <Frame>
      <a href="../../assets/img/4e223dea80_Enable_2BAudit_2BLogging.png" rel="noreferrer nofollow noopener" target="_blank">
        <img alt="" height="286" src="https://mintcdn.com/perplexity-help-center/VSbT8XXdqBYCrHHo/help-center/assets/img/4e223dea80_Enable_2BAudit_2BLogging.png?fit=max&auto=format&n=VSbT8XXdqBYCrHHo&q=85&s=d63b4606c88adfad0dbcec3af53850fb" width="1418" data-path="help-center/assets/img/4e223dea80_Enable_2BAudit_2BLogging.png" />
      </a>
    </Frame>
  </li>

  <li>
    <p>Configure your <b>Webhook URL</b> (must be HTTPS) and click <b>Save</b></p>

    <Frame>
      <a href="../../assets/img/b01c823af0_Audit_2BLog_2BSettings.png" rel="noreferrer nofollow noopener" target="_blank">
        <img alt="" height="598" src="https://mintcdn.com/perplexity-help-center/VSbT8XXdqBYCrHHo/help-center/assets/img/b01c823af0_Audit_2BLog_2BSettings.png?fit=max&auto=format&n=VSbT8XXdqBYCrHHo&q=85&s=42d2df5403254f2c0df98178bdb9d006" width="1428" data-path="help-center/assets/img/b01c823af0_Audit_2BLog_2BSettings.png" />
      </a>
    </Frame>
  </li>

  <li>
    <p>For added security, you can set an <b>Authorization Header</b> that will be used to authenticate all requests to your Webhook URL. Unless you specify an authorization scheme, the value you enter will be sent as a Bearer token</p>
  </li>
</ol>

<h2 id="h_80204fdd3b">Webhook authentication</h2>

<p>You can secure your webhook endpoint using either:</p>

<h3 id="h_147539bd9f"><b>Bearer Token</b></h3>

<p>Provide a token without a prefix. The system will automatically prepend <code>Bearer</code> to the header.</p>

<ul>
  <li>
    <p>Example: <code>your-secret-token-123</code></p>
  </li>

  <li>
    <p>Sent as: <code>Authorization: Bearer your-secret-token-123</code></p>
  </li>
</ul>

<h3 id="h_c0aa75290f"><b>Custom Authorization Header</b></h3>

<p>Provide a complete authorization header value (must contain a prefix).</p>

<ul>
  <li>
    <p>Example: <code>Splunk xyz-token-456</code></p>
  </li>

  <li>
    <p>Sent as: <code>Authorization: Splunk xyz-token-456</code></p>
  </li>
</ul>

<h2 id="h_cbc8e3944a">Webhook delivery</h2>

<h3 id="h_cc7b199d9b">Request format</h3>

<p>Audit logs are delivered to your webhook URL via HTTP POST requests with:</p>

<ul>
  <li>
    <p><b>Method</b>: <code>POST</code></p>
  </li>

  <li>
    <p><b>Content-Type</b>: <code>application/json</code></p>
  </li>
</ul>

<h3 id="h_2a952e7372">Authentication header</h3>

<p>If you configured an authentication header token, it will be included in the request:</p>

<pre>Authorization: Bearer your-token-123</pre>

<p>Or for custom headers:</p>

<pre>Authorization: Splunk your-token-456</pre>

<h3 id="h_72956cb09d">Response handling</h3>

<ul>
  <li>
    <p>Your webhook endpoint should respond with HTTP 2xx status codes to indicate successful receipt</p>
  </li>

  <li>
    <p>HTTP 4xx or 5xx status codes will be logged as errors in Perplexity's system</p>
  </li>
</ul>

<h2 id="h_f700982583">Audit log schema</h2>

<p>All audit log events follow this standard schema:</p>

<table>
  <tbody>
    <tr>
      <td>
        <p><b>Field</b></p>
      </td>

      <td>
        <p><b>Type</b></p>
      </td>

      <td>
        <p><b>Required</b></p>
      </td>

      <td>
        <p><b>Description</b></p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>uuid</code></p>
      </td>

      <td>
        <p>string</p>
      </td>

      <td>
        <p>Yes</p>
      </td>

      <td>
        <p>Unique identifier for this audit log event (auto-generated UUID v4)</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>timestamp</code></p>
      </td>

      <td>
        <p>string</p>
      </td>

      <td>
        <p>Yes</p>
      </td>

      <td>
        <p>ISO 8601 timestamp in RFC3339 format (e.g., <code>2024-01-15T10:30:45+00:00</code>)</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>event\_type</code></p>
      </td>

      <td>
        <p>string</p>
      </td>

      <td>
        <p>Yes</p>
      </td>

      <td>
        <p>Type of event that occurred (see <a href="#h_9450c30c5d">Event types</a>)</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>user\_email</code></p>
      </td>

      <td>
        <p>string</p>
      </td>

      <td>
        <p>Yes</p>
      </td>

      <td>
        <p>Email address of the user who performed the action</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>ip\_address</code></p>
      </td>

      <td>
        <p>string</p>
      </td>

      <td>
        <p>Yes</p>
      </td>

      <td>
        <p>IP address of the client that initiated the action</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>user\_agent</code></p>
      </td>

      <td>
        <p>string</p>
      </td>

      <td>
        <p>Yes</p>
      </td>

      <td>
        <p>User agent string of the client browser or application</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>session\_id</code></p>
      </td>

      <td>
        <p>string</p>
      </td>

      <td>
        <p>No</p>
      </td>

      <td>
        <p>Session identifier for tracking related actions (may be null)</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>metadata</code></p>
      </td>

      <td>
        <p>object</p>
      </td>

      <td>
        <p>No</p>
      </td>

      <td>
        <p>Event-specific additional data (structure varies by event type)</p>
      </td>
    </tr>
  </tbody>
</table>

<h3 id="h_9450c30c5d">Event types</h3>

<p>Below you will find a definition for each event type you may find in your <b>Audit Logs</b>:</p>

<h4 id="h_97ae88df79">User activity events</h4>

<table>
  <tbody>
    <tr>
      <td>
        <p><b>Event Type</b></p>
      </td>

      <td>
        <p><b>Description</b></p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>login</code></p>
      </td>

      <td>
        <p>User successfully authenticated and logged in</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>query</code></p>
      </td>

      <td>
        <p>User submitted a search query<br />​<br />When users attach files to a query, this event includes an <code>attachments</code> field in its metadata with <code>file\_uuid</code> and <code>file\_name</code> for each attached file</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>answer\_generated</code></p>
      </td>

      <td>
        <p>AI-generated answer was returned to the user</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>file\_upload</code></p>
      </td>

      <td>
        <p>User uploaded a file to a query or project</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>file\_download</code></p>
      </td>

      <td>
        <p>User downloaded a file from a project</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>file\_delete</code></p>
      </td>

      <td>
        <p>User deleted a file from a query or project</p>
      </td>
    </tr>
  </tbody>
</table>

<h4 id="h_2a1f9d7c31">Thread events</h4>

<table>
  <tbody>
    <tr>
      <td>
        <p><b>Event Type</b></p>
      </td>

      <td>
        <p><b>Description</b></p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>thread\_forked</code></p>
      </td>

      <td>
        <p>User created a copy of an existing thread</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>thread\_exported</code></p>
      </td>

      <td>
        <p>User exported a thread (for example, to PDF or Markdown)</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>thread\_shared</code></p>
      </td>

      <td>
        <p>User shared a thread with another user or made it publicly accessible</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>thread\_deleted</code></p>
      </td>

      <td>
        <p>User deleted a thread</p>
      </td>
    </tr>
  </tbody>
</table>

<h4 id="h_3c8e51fa2d">Membership events</h4>

<table>
  <tbody>
    <tr>
      <td>
        <p><b>Event Type</b></p>
      </td>

      <td>
        <p><b>Description</b></p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>member\_invited</code></p>
      </td>

      <td>
        <p>An admin invited a new member to the organization</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>member\_invite\_rescinded</code></p>
      </td>

      <td>
        <p>An admin rescinded a pending member invitation</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>member\_removed</code></p>
      </td>

      <td>
        <p>An admin removed a member from the organization</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>member\_role\_changed</code></p>
      </td>

      <td>
        <p>An admin changed a member's role within the organization</p>
      </td>
    </tr>
  </tbody>
</table>

<h4 id="h_a97d61ce54">Roles & Groups events (RBAC)</h4>

<table>
  <tbody>
    <tr>
      <td>
        <p><b>Event Type</b></p>
      </td>

      <td>
        <p><b>Description</b></p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>role\_created</code></p>
      </td>

      <td>
        <p>An admin created a new custom role</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>role\_updated</code></p>
      </td>

      <td>
        <p>An admin updated a role's name, description, or permissions</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>role\_deleted</code></p>
      </td>

      <td>
        <p>An admin deleted a custom role</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>role\_users\_changed</code></p>
      </td>

      <td>
        <p>An admin added or removed users from a role directly (metadata includes an <code>action</code> field of <code>added</code> or <code>removed</code>)</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>role\_groups\_changed</code></p>
      </td>

      <td>
        <p>An admin added or removed groups from a role (metadata includes an <code>action</code> field of <code>added</code> or <code>removed</code>)</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>group\_created</code></p>
      </td>

      <td>
        <p>An admin created a new user group</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>group\_deleted</code></p>
      </td>

      <td>
        <p>An admin deleted a user group</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>group\_members\_changed</code></p>
      </td>

      <td>
        <p>An admin added or removed members from a user group</p>
      </td>
    </tr>
  </tbody>
</table>

<h4 id="h_0387ebb571">Agent events</h4>

<table>
  <tbody>
    <tr>
      <td>
        <p>Event Type</p>
      </td>

      <td>
        <p>Description</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>comet\_agent\_action</code></p>
      </td>

      <td>
        <p>Comet agent performed an automated action</p>
      </td>
    </tr>
  </tbody>
</table>

<h4 id="h_6f2d84ab19">Connector events</h4>

<table>
  <tbody>
    <tr>
      <td>
        <p><b>Event Type</b></p>
      </td>

      <td>
        <p><b>Description</b></p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>connector\_connected</code></p>
      </td>

      <td>
        <p>User connected a third-party connector (for example, Google Drive or Slack)</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>connector\_disconnected</code></p>
      </td>

      <td>
        <p>User disconnected a previously connected third-party connector</p>
      </td>
    </tr>
  </tbody>
</table>

<h4 id="h_9d4c72e0b3">Perplexity Computer events</h4>

<table>
  <tbody>
    <tr>
      <td>
        <p><b>Event Type</b></p>
      </td>

      <td>
        <p><b>Description</b></p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>computer\_task\_started</code></p>
      </td>

      <td>
        <p>User started a Perplexity Computer task</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>computer\_agent\_action</code></p>
      </td>

      <td>
        <p>A Perplexity Computer agent performed an automated action while executing a task</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>computer\_task\_completed</code></p>
      </td>

      <td>
        <p>A Perplexity Computer task finished successfully</p>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>computer\_task\_error</code></p>
      </td>

      <td>
        <p>A Perplexity Computer task failed with an error</p>
      </td>
    </tr>
  </tbody>
</table>

<h3 id="h_865b9ef7a5">Payload examples</h3>

<p>The following entry is logged when a user submits a search query:</p>

<pre>\{<br />  "uuid": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",<br />  "timestamp": "2024-01-15T14:25:12.345678+00:00",<br />  "event\_type": "query",<br />  "user\_email": "{"alice@company.com"}",<br />  "ip\_address": "203.0.113.45",<br />  "user\_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36",<br />  "session\_id": "query\_xyz789",<br />  "metadata": \{<br />    "query\_str": "What are the best practices for API security?"<br />  }<br />}<br /></pre>

<h2 id="h_2ff3f3dc0a">Platform-specific formatting</h2>

<h3 id="h_1c905d9203">Slack webhooks</h3>

<p>If your webhook URL is a Slack webhook (<code>{"https://hooks.slack.com/services/..."}</code>), audit logs are automatically formatted using Slack's Block Kit format for rich display:</p>

<pre>\{<br />  "blocks": \[<br />    \{<br />      "type": "section",<br />      "text": \{<br />        "type": "mrkdwn",<br />        "text": "\*Event Type:\* Answer Generated"<br />      }<br />    },<br />    \{<br />      "type": "section",<br />      "text": \{<br />        "type": "mrkdwn",<br />        "text": "\*User:\* {"alice@company.com"}\n\*IP Address:\* 203.0.113.45\n\*User Agent:\* Mozilla/5.0...\n\*Session ID:\* query\_xyz789\n\*Timestamp:\* 2024-01-15T14:25:18.987654+00:00"<br />      }<br />    },<br />    \{<br />      "type": "section",<br />      "text": \{<br />        "type": "mrkdwn",<br />        "text": "\n\*Metadata:\*\n• \*answer:\* API security best practices include...\n• \*model:\* claude-3-opus"<br />      }<br />    }<br />  ]<br />}<br /></pre>

<p><b>Note</b>: Slack formatting includes:</p>

<ul>
  <li>
    <p>Event type is converted to title case with underscores removed</p>
  </li>

  <li>
    <p>Metadata values are truncated to 500 characters if they exceed this limit</p>
  </li>

  <li>
    <p>Total metadata section is truncated to 2,500 characters to comply with Slack's 3,000 character limit</p>
  </li>

  <li>
    <p>Long values show truncation notice with original length</p>
  </li>
</ul>

<h3 id="h_2fcbf20143">Splunk HTTP Event Collector (HEC)</h3>

<p>If your authentication header starts with "Splunk", audit logs are automatically wrapped in Splunk's required format:</p>

<pre>\{<br />  "event": \{<br />    "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",<br />    "timestamp": "2024-01-15T10:30:45.123456+00:00",<br />    "event\_type": "login",<br />    "user\_email": "[user@company.com](mailto:user@company.com)",<br />    "ip\_address": "192.168.1.100",<br />    "user\_agent": "Mozilla/5.0...",<br />    "session\_id": "session-abc-123",<br />    "metadata": \{}<br />  }<br />}<br /></pre>

<h3 id="h_268861e28e">Generic webhooks</h3>

<p>For all other webhook URLs, the standard JSON payload (as shown in the Example Payloads section) is sent without additional formatting.</p>

<h2 id="h_d278ba089a">Common scenarios</h2>

<h3 id="h_3ca8fab364">Tracking user research sessions</h3>

<p>To track a user's research session from query to answer:</p>

<Steps>
  <Step>
    <p><b>Query Event</b>: User submits a question</p>

    <ul>
      <li>
        <p>Contains <code>query\_str</code> in metadata</p>
      </li>

      <li>
        <p>Has a <code>session\_id</code> that links to the query</p>
      </li>
    </ul>
  </Step>

  <Step>
    <p><b>Answer Generated Event</b>: AI returns an answer</p>

    <ul>
      <li>
        <p>Same <code>session\_id</code> as the query event</p>
      </li>

      <li>
        <p>Contains the full <code>answer</code> text and AI <code>model</code> used</p>
      </li>

      <li>
        <p>Can be correlated with the query event via <code>session\_id</code></p>
      </li>
    </ul>
  </Step>
</Steps>

<h3 id="h_dfe4b51975">Monitoring file access</h3>

<p>To track which files are being accessed:</p>

<Steps>
  <Step>
    <p><b>File Upload Event</b>: User adds a file to a project</p>

    <ul>
      <li>
        <p>Contains <code>filename</code>, <code>file\_uuid</code>, <code>space\_name</code>, and <code>space\_uuid</code></p>
      </li>
    </ul>
  </Step>

  <Step>
    <p><b>File Download Event</b>: User downloads the file</p>

    <ul>
      <li>
        <p>Same <code>file\_uuid</code> can be used to correlate with upload</p>
      </li>

      <li>
        <p>Shows who accessed the file and when</p>
      </li>
    </ul>
  </Step>
</Steps>

<h3 id="h_4436422acc">Auditing configuration changes</h3>

<p>To track administrative changes:</p>

<h4 id="h_59c371c262"><b>Organization Settings Update Event:</b></h4>

<p>Admin modifies a setting</p>

<ul>
  <li>
    <p>Contains <code>key</code> of the setting that changed</p>
  </li>

  <li>
    <p>Shows <code>old\_value</code> and <code>new\_value</code> for comparison</p>
  </li>

  <li>
    <p>Can be filtered by <code>user\_email</code> to track which admins made changes</p>
  </li>
</ul>

<h2 id="h_5f0209acf3">Best practices</h2>

<h3 id="h_5213a3fde5">Webhook endpoint implementation</h3>

<ul>
  <li>
    <p><b>Respond Quickly</b>: Your endpoint should respond within 1 second to avoid timeouts</p>
  </li>

  <li>
    <p><b>Process Asynchronously</b>: Queue audit logs for processing and respond immediately</p>
  </li>

  <li>
    <p><b>Validate Payloads</b>: Verify the structure and content of incoming payloads</p>
  </li>

  <li>
    <p><b>Secure Your Endpoint</b>: Use HTTPS and validate the authentication header</p>
  </li>

  <li>
    <p><b>Handle Failures Gracefully</b>: Log errors but don't return error responses that could cause retries</p>
  </li>
</ul>

<h3 id="h_ad05565819">Data retention and analysis</h3>

<ul>
  <li>
    <p><b>Store Long-Term</b>: Keep audit logs for compliance and security analysis</p>
  </li>

  <li>
    <p><b>Index Key Fields</b>: Index <code>event\_type</code>, <code>user\_email</code>, <code>timestamp</code>, and <code>session\_id</code> for efficient querying</p>
  </li>

  <li>
    <p><b>Correlate Events</b>: Use <code>session\_id</code> to link related events (queries and answers)</p>
  </li>

  <li>
    <p><b>Monitor Patterns</b>: Watch for unusual access patterns or suspicious activity</p>
  </li>

  <li>
    <p><b>Export Regularly</b>: Maintain backups of audit logs outside the webhook system</p>
  </li>
</ul>

<h3 id="h_a117a15a52">Security considerations</h3>

<ul>
  <li>
    <p><b>Protect Webhook URLs</b>: Keep your webhook URL and authentication token confidential</p>
  </li>

  <li>
    <p><b>Rotate Tokens</b>: Periodically rotate your authentication tokens</p>
  </li>

  <li>
    <p><b>Monitor Webhook Failures</b>: Track failed deliveries to detect endpoint issues</p>
  </li>

  <li>
    <p><b>Validate IP Sources</b>: Consider validating that webhook requests come from Perplexity's IP ranges</p>
  </li>

  <li>
    <p><b>PII Handling</b>: Audit logs contain user emails and IP addresses - handle according to your privacy policies</p>
  </li>
</ul>

<h2 id="h_162612ec10"><b>JSON payload examples for audit log events</b></h2>

<pre>/\* Query \*/<br />\{<br />  event\_type: "query"<br />  timestamp: 2025-02-20T09:05:31<br />  user\_email: "[john@perplexity.ai](mailto:john@perplexity.ai)"<br />  ip\_address: "162.229.229.229"<br />  user\_agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10\_15\_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36"<br />  metadata: \{<br />    query: "What were the results of our most recent pentest report?"<br />  }<br />}<br /><br />/\* File Upload \*/<br />\{<br />  event\_type: "file\_upload"<br />  timestamp: 2025-02-20T09:05:31<br />  user\_email: "[john@perplexity.ai](mailto:john@perplexity.ai)"<br />  ip\_address: "162.229.229.229"<br />  user\_agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10\_15\_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36"<br />  metadata: \{<br />    file\_name: "soc2\_report.pdf"<br />    file\_uuid: "XXXXX"<br />    space\_name: "Security Reports"<br />    space\_uuid: "YYYYY"<br />  }<br />}</pre>

<h2 id="h_6b517d03b4">Frequently asked questions</h2>

<h3 id="h_edc1894a2b"><b>Can I use this feature if I have less than 50 seats in my org?</b></h3>

<p>If your organization has fewer than 50 seats, you can upgrade at least one seat to <a href="/help-center/help-center/en/articles/12310544-what-is-enterprise-max">Enterprise Max</a> to access Audit Logs for your organization.</p>

<h3 id="h_03e3c26751"><b>I have activated the feature by mistake and I've been charged for additional seats.</b></h3>

<p>If you have activated Audit Logs by mistake and you're not ready to upgrade to 50+ seats, we can adjust billing for your account and undo any additional billing or payments. Please make sure that you've deactivated this feature and get in touch.</p>


## Related topics

- [Enterprise roles and permissions](/help-center/help-center/en/articles/11187754-enterprise-roles-and-permissions.md)
- [Data retention and privacy for Enterprise organizations](/help-center/help-center/en/articles/11187708-data-retention-and-privacy-for-enterprise-organizations-and-users.md)
- [Getting started with FedRAMP 20x Secure Configuration](/help-center/help-center/en/articles/14714627-getting-started-with-fedramp-20x-secure-configuration.md)
- [Connecting Perplexity with Notion](/help-center/help-center/en/articles/12167654-connecting-perplexity-with-notion.md)
- [Enterprise admin hub](/help-center/help-center/en/enterprise.md)
