---
title: "AuditLog"
description: "AuditLog"
url: "https://www.contentstack.com/docs/developers/sdks/content-management-sdk/dot-net/reference/auditlog"
product: "Contentstack"
doc_type: "guide"
audience:
  - developers
  - admins
version: "current"
last_updated: "2026-09-13"
---

# AuditLog

## AuditLog

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 Get audit log item request is used to retrieve a specific item from the audit log of a stack.

```
using Contentstack.Management.Core;
using Contentstack.Management.Core.Models;

ContentstackClient client = new ContentstackClient("<AUTHTOKEN>");
ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").AuditLog("<AUDITLOG_UID>").Fetch();
```

Query parameter collection

## FetchAsync

The Get audit log item request is used to retrieve a specific item from the audit log of a stack.

```
using Contentstack.Management.Core;
using Contentstack.Management.Core.Models;

ContentstackClient client = new ContentstackClient("<AUTHTOKEN>");
ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").AuditLog("<AUDITLOG_UID>").FetchAsync();
```

Query parameter collection

## FindAll

The Get audit log request is used to retrieve the audit log of a stack.

```
using Contentstack.Management.Core;
using Contentstack.Management.Core.Models;

ContentstackClient client = new ContentstackClient("<AUTHTOKEN>");
ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").AuditLog().FindAll();
```

Query parameter collection

## FindAllAsync

The Get audit log request is used to retrieve the audit log of a stack.

```
using Contentstack.Management.Core;
using Contentstack.Management.Core.Models;

ContentstackClient client = new ContentstackClient("<AUTHTOKEN>");
ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").AuditLog().FindAllAsync();
```

Query parameter collection

## AuditLog | .NET Management SDK | Contentstack

AuditLog records all stack activity, tracking published items, updates, deletes, and current content status in the Contentstack .NET Management SDK.