Audit
4 endpoints
List audit events with advanced filtering
Get a paginated list of audit events for the authenticated tenant with comprehensive filtering options. Supports filtering by user, event type, action, resource, and date range. This operation is automatically audited.
Parameters
limitoffsetuser_idevent_typeactionresource_typeresource_idfromtoResponses
200Successfully retrieved audit events with pagination info
400Invalid query parameters
401Authentication required
403Access denied - insufficient permissions
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';23const client = new Limbos({4 apiKey: process.env.LIMBOS_API_KEY,5});67const result = await client.audit.list({8 limit: 1,9 offset: 1,10 user_id: 'example',11 event_type: 'example',12 action: 'example',13 resource_type: 'example',14 resource_id: 'example',15 from: 'example',16 to: 'example',17});1819console.log(result);