Audit Log

Overview

The Audit Log module enables you to access and retrieve audit logs associated with your Paradime account.

This feature provides you with a detailed and comprehensive history of all actions, modifications, and changes that have occurred within your Paradime account, allowing for thorough tracking and monitoring of account activity.

Fetching all audit logs

Retrieves all audit logs.

none

# First party modules
from paradime import Paradime

# Create a Paradime client with your API credentials
paradime = Paradime( api_endpoint="API_ENDPOINT", api_key="API_KEY", api_secret="API_SECRET")

# Fetch all audit logs
audit_logs = paradime.audit_log.get_all()

Last updated