Dashboard
3 endpoints
Get recent activity
Get recent activity items for the dashboard
Parameters
limitResponses
200Successfully retrieved activity
401Authentication required
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.dashboard.list({8 limit: 1,9});1011console.log(result);