Audit log
Audit log
fetch
The fetch method retrieves a specific item from the audit log of the stack
| Name | Type | Description |
|---|---|---|
| log_item_uid (required) | str | UID of the item to be retrieved |
import contentstack_management
client = contentstack_management.Client(authtoken='authtoken')
response = client.stack('api_key').auditlog('log_item_uid').fetch().json()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()