Dashboard

3 endpoints

Get recent activity

Get recent activity items for the dashboard

Parameters
limit
integerMaximum number of activity items
Responses
200Successfully retrieved activity
401Authentication required
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';
2
3const client = new Limbos({
4 apiKey: process.env.LIMBOS_API_KEY,
5});
6
7const result = await client.dashboard.list({
8 limit: 1,
9});
10
11console.log(result);