---
title: "Audit log"
description: "Audit log"
url: "https://www.contentstack.com/docs/developers/sdks/content-management-sdk/python/reference/audit-log"
product: "Contentstack"
doc_type: "guide"
audience:
  - developers
  - admins
version: "current"
last_updated: "2026-09-06"
---

# Audit log

## Audit log

[](/docs/administration/about-organizations)[](https://www.contentstack.com/docs/headless-cms/about-assets)Audit log displays a record of all the activities performed in a stack and helps you keep a track of all published items, updates, deletes, and current status of the existing content.

## fetch

The fetch method retrieves a specific item from the audit log of the stack

```
import contentstack_management
client = contentstack_management.Client(authtoken='authtoken')
response = client.stack('api_key').auditlog('log_item_uid').fetch().json()
```

UID of the item to be retrieved

## find

The find method retrieves the complete audit log of the stack

```
import contentstack_management
client = contentstack_management.Client(authtoken='authtoken')
response = client.stack("api_key").auditlog().find().json()
```

## Audit log | Python Management SDK | Contentstack

Audit log records all activities in a stack so you can track published items, updates, deletes, and status, in the Python Management SDK.