from complycube import ComplyCubeClient
cc_api = ComplyCubeClient(api_key='<YOUR_API_KEY>')
logs = cc_api.auditlogs.list()
use ComplyCube\ComplyCubeClient;
$ccapi = new ComplyCubeClient('<YOUR_API_KEY>');
$auditLogs = $ccapi->auditLogs()->list();
using ComplyCube.Net;
using ComplyCube.Net.Resources.AuditLogs;
var auditLogApi = new AuditLogApi(new ComplyCubeClient("<YOUR_API_KEY>"));
var auditLogs = await auditLogApi.ListAsync();