Service Accounts

9 endpoints

List service accounts

Lists all service accounts for the authenticated tenant.

Parameters
limit
integerNumber of items per page
offset
integerNumber of items to skip
Responses
200List of service accounts
401Authentication required
403Permission denied
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.service-accounts.list({
8 limit: 1,
9 offset: 1,
10});
11
12console.log(result);