Service Accounts
9 endpoints
List service accounts
Lists all service accounts for the authenticated tenant.
Parameters
limitoffsetResponses
200List of service accounts
401Authentication required
403Permission denied
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.service-accounts.list({8 limit: 1,9 offset: 1,10});1112console.log(result);