---
title: Audit logs
url: https://www.tines.com/docs/admin/audit-logs/
updated: 2026-02-19T20:36:10+00:00
---

*[tines.com](https://www.tines.com/llms.txt) › [Docs](https://www.tines.com/llms.txt) › [Admin](https://www.tines.com/llm/docs/admin.md)*

# Audit logs

*[View on tines.com](https://www.tines.com/docs/admin/audit-logs/)*

> **NOTE:** Not seeing this feature? Talk to your tenant admin or [reach out to the Tines team](https://www.tines.com/contact-support/) to learn more.

We automatically capture an audit log any time a user changes any piece of data in your Tines tenant.

These audit logs are available to tenant admins and users with the `AUDIT_LOG_READ` permission via the UI and API. Information about the operations logged can be found in our [API docs.](https://www.tines.com/api/audit-logs/)

The retention period for audit logs in your Tines tenant is two years.

## Exporting audit logs

We currently support scheduled exports of audit logs to[ Amazon S3](https://aws.amazon.com/s3/) buckets, which runs every 15 minutes. Only tenant admins can configure this setting.

[Video](https://stream.mux.com/fdx00fNU7R8eQ4vYAJsZ4wzXRIvTzLfUu/high.mp4)

#### **Credentials for Amazon S3**

To securely invoke Amazon S3 APIs, Tines supports AWS authentication using [assumed roles](https://www.tines.com/docs/credentials/aws/).

##### **Required IAM permissions**

To allow exports to S3 from Tines, the IAM role must include the following permission:

```json
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "s3:PutObject"
            ],
            "Resource": "arn:aws:s3::[bucket-name]/*"
        }
    ]
}
```
